Skip to content

Commit

Permalink
Set target sdk version to 25
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonas Jongejan committed Mar 4, 2018
1 parent 223c4dc commit ba5412d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion addons/ofxAndroid/ofAndroidLib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ model {
buildToolsVersion = "25.0.3"
defaultConfig.with {
minSdkVersion.apiLevel 19
targetSdkVersion.apiLevel 19
targetSdkVersion.apiLevel 25
versionCode 1
versionName "1.0"
}
Expand Down
3 changes: 2 additions & 1 deletion libs/openFrameworksCompiled/project/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,11 @@ model {

defaultConfig.with {
minSdkVersion.apiLevel 19
targetSdkVersion.apiLevel 19
targetSdkVersion.apiLevel 25
}

ndk {
platformVersion = "19"
moduleName "openFrameworksLib"
toolchain = buildToolchain()
stl = compilerStl()
Expand Down
3 changes: 2 additions & 1 deletion scripts/templates/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ model {

defaultConfig.with {
minSdkVersion.apiLevel = 19
targetSdkVersion.apiLevel = 19
targetSdkVersion.apiLevel = 25
versionCode = 1
versionName = "1.0"
}
Expand All @@ -41,6 +41,7 @@ model {
moduleName = ofAppModuleName()
toolchain = buildToolchain()
stl = compilerStl()
platformVersion = "19"
}

android.sources {
Expand Down

1 comment on commit ba5412d

@rozaimialli
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good

Please sign in to comment.