tools update
This commit is contained in:
parent
912257224d
commit
3461cf6053
5 changed files with 20 additions and 8 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -33,5 +33,6 @@ ehthumbs.db
|
||||||
Thumbs.db
|
Thumbs.db
|
||||||
|
|
||||||
app/.externalNativeBuild
|
app/.externalNativeBuild
|
||||||
|
app/.cxx
|
||||||
|
|
||||||
app/app-all-release.apk
|
app/app-all-release.apk
|
||||||
|
|
|
@ -1,12 +1,23 @@
|
||||||
apply plugin: 'com.android.application'
|
apply plugin: 'com.android.application'
|
||||||
android {
|
android {
|
||||||
compileSdkVersion 25
|
signingConfigs {
|
||||||
buildToolsVersion "28.0.1"
|
release {
|
||||||
|
def Properties localProps = new Properties()
|
||||||
|
localProps.load(new FileInputStream(file('../local.properties')))
|
||||||
|
assert localProps['droid48.store'];
|
||||||
|
storeFile file(localProps["droid48.store"])
|
||||||
|
keyAlias localProps["droid48.alias"]
|
||||||
|
storePassword localProps["droid48.storePass"]
|
||||||
|
keyPassword localProps["droid48.pass"]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
compileSdkVersion 26
|
||||||
|
buildToolsVersion "29.0.2"
|
||||||
|
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
applicationId "org.ab.x48"
|
applicationId "org.ab.x48"
|
||||||
minSdkVersion 16
|
minSdkVersion 16
|
||||||
targetSdkVersion 25
|
targetSdkVersion 26
|
||||||
|
|
||||||
externalNativeBuild {
|
externalNativeBuild {
|
||||||
cmake {
|
cmake {
|
||||||
|
@ -23,5 +34,5 @@ android {
|
||||||
|
|
||||||
}
|
}
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation 'com.getkeepsafe.relinker:relinker:1.2.3'
|
implementation 'com.getkeepsafe.relinker:relinker:1.3.1'
|
||||||
}
|
}
|
|
@ -15,7 +15,7 @@
|
||||||
</activity>
|
</activity>
|
||||||
<activity android:name=".Settings" android:label="@string/choose_contrast_value"></activity>
|
<activity android:name=".Settings" android:label="@string/choose_contrast_value"></activity>
|
||||||
</application>
|
</application>
|
||||||
<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="24"/>
|
<uses-sdk></uses-sdk>
|
||||||
<supports-screens android:largeScreens="true" android:normalScreens="true" android:anyDensity="true" android:resizeable="true" android:smallScreens="true" android:xlargeScreens="true"></supports-screens>
|
<supports-screens android:largeScreens="true" android:normalScreens="true" android:anyDensity="true" android:resizeable="true" android:smallScreens="true" android:xlargeScreens="true"></supports-screens>
|
||||||
|
|
||||||
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"></uses-permission>
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"></uses-permission>
|
||||||
|
|
|
@ -6,7 +6,7 @@ buildscript {
|
||||||
google()
|
google()
|
||||||
}
|
}
|
||||||
dependencies {
|
dependencies {
|
||||||
classpath 'com.android.tools.build:gradle:3.1.3'
|
classpath 'com.android.tools.build:gradle:3.5.0'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
4
gradle/wrapper/gradle-wrapper.properties
vendored
4
gradle/wrapper/gradle-wrapper.properties
vendored
|
@ -1,6 +1,6 @@
|
||||||
#Tue Mar 27 19:47:35 CEST 2018
|
#Mon Sep 23 18:38:51 CEST 2019
|
||||||
distributionBase=GRADLE_USER_HOME
|
distributionBase=GRADLE_USER_HOME
|
||||||
distributionPath=wrapper/dists
|
distributionPath=wrapper/dists
|
||||||
zipStoreBase=GRADLE_USER_HOME
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
zipStorePath=wrapper/dists
|
zipStorePath=wrapper/dists
|
||||||
distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-all.zip
|
distributionUrl=https\://services.gradle.org/distributions/gradle-5.4.1-all.zip
|
||||||
|
|
Loading…
Reference in a new issue