Skip to content

Commit ac9f76e

Browse files
author
Vadim Lopatin
committed
increment version; add mips and mips64 to common build
1 parent 0766fda commit ac9f76e

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

android/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
55
package="org.coolreader"
66
android:installLocation="auto"
7-
android:versionName="3.2.6-1" android:versionCode="2061">
7+
android:versionName="3.2.7-1" android:versionCode="2071">
88
<supports-screens
99
android:xlargeScreens="true"
1010
android:largeScreens="true"

android/app/build.gradle

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ android {
88
targetSdkVersion 26
99
// When new version released, version code must be incremented at least by 8
1010
// for compatibility with ABI versioning of split apk (see below).
11-
versionCode 2061
12-
versionName "3.2.6-1"
11+
versionCode 2071
12+
versionName "3.2.7-1"
1313
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
1414
externalNativeBuild {
1515
cmake {
@@ -66,6 +66,8 @@ android {
6666
doNotStrip "*/arm64-v8a/*.so"
6767
doNotStrip "*/x86/*.so"
6868
doNotStrip "*/x86_64/*.so"
69+
doNotStrip "*/mips/*.so"
70+
doNotStrip "*/mips64/*.so"
6971
}
7072
}
7173
}
@@ -79,7 +81,7 @@ android {
7981
abi {
8082
enable true
8183
reset()
82-
include 'x86', 'x86_64', 'armeabi-v7a', 'arm64-v8a' //select ABIs to build APKs for
84+
include 'x86', 'x86_64', 'armeabi-v7a', 'arm64-v8a', 'mips', 'mips64' //select ABIs to build APKs for
8385
universalApk true //generate an additional APK that contains all the ABIs
8486
}
8587
}

0 commit comments

Comments
 (0)