Skip to content

Commit

Permalink
Generate native symbols
Browse files Browse the repository at this point in the history
  • Loading branch information
teusbenschop committed Nov 15, 2020
1 parent 2d81069 commit 3c3faac
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@ gradle/.idea/caches/build_file_checksums.ser
gradle/app/build/intermediates/javac/debug/classes/org/bibledit/android/BuildConfig.class
gradle/app/build/intermediates/javac/debug/classes/org/bibledit/android/BuildConfig.class
gradle/app/build/intermediates/processed_res/debug/out/resources-debug.ap_
*.aab
9 changes: 6 additions & 3 deletions gradle/app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 28
compileSdkVersion 29
defaultConfig {
applicationId "org.bibledit.android"
minSdkVersion 22
Expand All @@ -10,13 +10,16 @@ android {
// 2019: Apps on Google Play will be required to target API level 28 or higher.
// 2020: Apps on Google Play will be required to target API level 29 or higher.
targetSdkVersion 29
versionCode 132
versionName "5.0.916"
versionCode 133
versionName "5.0.918"
externalNativeBuild {
cmake {
cppFlags ""
}
}
ndk {
debugSymbolLevel 'FULL'
}
}
buildTypes {
release {
Expand Down

0 comments on commit 3c3faac

Please sign in to comment.