Skip to content

Commit

Permalink
Merge pull request #1070 from CypherpunkArmory/master
Browse files Browse the repository at this point in the history
Better support for armhf devices running Android 8.0+ (#1064)
  • Loading branch information
corbinlc authored Oct 16, 2019
2 parents 566d783 + e255efc commit 68757cf
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ android {
minSdkVersion 21
targetSdkVersion 29
versionCode vcode
versionName "2.6.3"
versionName "2.6.4"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
testInstrumentationRunnerArguments clearPackageData: 'true'
Expand Down Expand Up @@ -198,7 +198,7 @@ ext.architectures = ["armeabi-v7a", "arm64-v8a", "x86", "x86_64"]
ext.libDir = "$project.projectDir/src/main/jniLibs"

task downloadAssets(type: Download) {
def assetVersion = "v1.1.0"
def assetVersion = "v1.1.7"
def baseUrl = "https://github.com/CypherpunkArmory/UserLAnd-Assets-Support/releases/download/$assetVersion"
for (arch in architectures) {
src "$baseUrl/$arch-assets.zip"
Expand All @@ -209,9 +209,7 @@ task downloadAssets(type: Download) {
task fetchAssets(dependsOn: downloadAssets) {
doLast {
for (arch in architectures) {
delete {
"$buildDir/$arch"
}
delete "$buildDir/$arch"
copy {
from zipTree("$buildDir/$arch-assets.zip")
into "$buildDir/$arch"
Expand Down

0 comments on commit 68757cf

Please sign in to comment.