summaryrefslogtreecommitdiffstats
path: root/android/source/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'android/source/build.gradle')
-rw-r--r--android/source/build.gradle5
1 files changed, 4 insertions, 1 deletions
diff --git a/android/source/build.gradle b/android/source/build.gradle
index 8e2355c24642..3f476c22fd07 100644
--- a/android/source/build.gradle
+++ b/android/source/build.gradle
@@ -53,7 +53,10 @@ android {
// defaults for Manifest
defaultConfig {
minSdkVersion 14
- targetSdkVersion 23
+ // openssl on x86 makes the native-code.so contain text-relocations,
+ // 22 treats them as warnings, on 23 it is fatal error
+ // ToDo: fix openssl stuff to not block targeting 23 or later
+ targetSdkVersion 22
manifestPlaceholders = [installLocation: "preferExternal"]
}
buildTypes {