Skip to content

Commit 62dcd61

Browse files
committed
feat: baseline platform minimums and plugin-tools 5.4.2
1 parent 8acd966 commit 62dcd61

File tree

4 files changed

+11
-10
lines changed

4 files changed

+11
-10
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"@angular/router": "^18.0.0",
2929
"@nativescript/angular": "^18.0.0",
3030
"@nativescript/core": "~8.8.0",
31-
"@nativescript/plugin-tools": "5.4.1",
31+
"@nativescript/plugin-tools": "5.4.2",
3232
"@nativescript/types": "~8.8.0",
3333
"@nativescript/webpack": "~5.0.22",
3434
"@ngtools/webpack": "^18.0.0",

tools/assets/App_Resources/Android/app.gradle

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
// Add your native dependencies here:
1+
// Add additional native dependencies here, for example:
22

3-
// Uncomment to add recyclerview-v7 dependency
4-
//dependencies {
5-
// compile 'com.android.support:recyclerview-v7:+'
6-
//}
3+
// dependencies {
4+
// implementation 'com.google.android.gms:play-services-location:+'
5+
// }
76

87
android {
9-
compileSdkVersion 32
8+
compileSdkVersion 34
9+
buildToolsVersion "34"
1010
defaultConfig {
11-
minSdkVersion 21
12-
targetSdkVersion 32
11+
minSdkVersion 24
12+
targetSdkVersion 34
1313
generatedDensities = []
1414
}
1515
aaptOptions {

tools/assets/App_Resources/iOS/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ platform :ios, '13.0'
33
post_install do |installer|
44
installer.pods_project.targets.each do |target|
55
target.build_configurations.each do |config|
6-
config.build_settings.delete 'IPHONEOS_DEPLOYMENT_TARGET'
6+
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.0'
77
end
88
end
99
end

tools/assets/App_Resources/iOS/build.xcconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@
44
// To build for device with Xcode 8 you need to specify your development team. More info: https://developer.apple.com/library/prerelease/content/releasenotes/DeveloperTools/RN-Xcode/Introduction.html
55
// DEVELOPMENT_TEAM = YOUR_TEAM_ID;
66
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
7+
IPHONEOS_DEPLOYMENT_TARGET = 13.0;

0 commit comments

Comments
 (0)