Specify build tools version
This commit is contained in:
parent
8410c706cf
commit
5ce10caed6
|
|
@ -37,6 +37,8 @@ jobs:
|
||||||
alias: ${{ secrets.ALIAS }}
|
alias: ${{ secrets.ALIAS }}
|
||||||
keyStorePassword: ${{ secrets.KEY_STORE_PASSWORD }}
|
keyStorePassword: ${{ secrets.KEY_STORE_PASSWORD }}
|
||||||
keyPassword: ${{ secrets.KEY_PASSWORD }}
|
keyPassword: ${{ secrets.KEY_PASSWORD }}
|
||||||
|
env:
|
||||||
|
BUILD_TOOLS_VERSION: "30.0.3"
|
||||||
- name: Upload signed apk
|
- name: Upload signed apk
|
||||||
if: ${{ github.event_name != 'pull_request' && success() && github.ref == 'refs/heads/master' }}
|
if: ${{ github.event_name != 'pull_request' && success() && github.ref == 'refs/heads/master' }}
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,7 @@ android {
|
||||||
compileSdkVersion androidCompileSdkVersion.toInteger()
|
compileSdkVersion androidCompileSdkVersion.toInteger()
|
||||||
|
|
||||||
ndkVersion androidCompileNdkVersion
|
ndkVersion androidCompileNdkVersion
|
||||||
|
buildToolsVersion androidBuildToolsVersion
|
||||||
|
|
||||||
buildFeatures {
|
buildFeatures {
|
||||||
viewBinding = true
|
viewBinding = true
|
||||||
|
|
|
||||||
|
|
@ -102,6 +102,7 @@ android {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
ndkVersion androidCompileNdkVersion
|
ndkVersion androidCompileNdkVersion
|
||||||
|
buildToolsVersion androidBuildToolsVersion
|
||||||
compileOptions {
|
compileOptions {
|
||||||
targetCompatibility JavaVersion.VERSION_1_7
|
targetCompatibility JavaVersion.VERSION_1_7
|
||||||
sourceCompatibility JavaVersion.VERSION_1_7
|
sourceCompatibility JavaVersion.VERSION_1_7
|
||||||
|
|
|
||||||
|
|
@ -13,6 +13,7 @@
|
||||||
#Sat Jan 30 19:20:27 CST 2021
|
#Sat Jan 30 19:20:27 CST 2021
|
||||||
androidTargetSdkVersion=30
|
androidTargetSdkVersion=30
|
||||||
androidCompileNdkVersion=22.0.7026061
|
androidCompileNdkVersion=22.0.7026061
|
||||||
|
androidBuildToolsVersion=30.0.3
|
||||||
apiCode=93
|
apiCode=93
|
||||||
androidCompileSdkVersion=30
|
androidCompileSdkVersion=30
|
||||||
androidMinSdkVersion=26
|
androidMinSdkVersion=26
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue