Skip to content

Commit

Permalink
Fix install/run on some devices
Browse files Browse the repository at this point in the history
  • Loading branch information
shmutalov committed Nov 11, 2020
1 parent 384004f commit d445303
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'

android {
compileSdkVersion 30
compileSdkVersion 29
buildToolsVersion "29.0.2"

compileOptions {
Expand All @@ -13,9 +13,9 @@ android {
defaultConfig {
applicationId "shmutalov.verusminer9000"
minSdkVersion 22
targetSdkVersion 30 // to avoid an error 13 when running exe in assets folder (sdk 29 gives the error)
targetSdkVersion 28 // to avoid an error 13 when running exe in assets folder (sdk 29 gives the error)
versionCode 7
versionName "0.0.10"
versionName "0.0.11"
buildConfigField "long", "BUILD_TIME", System.currentTimeMillis() + "L"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables.useSupportLibrary = true
Expand All @@ -37,5 +37,5 @@ dependencies {
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
implementation 'org.ocpsoft.prettytime:prettytime:4.0.2.Final'
implementation 'com.android.volley:volley:1.1.1'
implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.72'
implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.4.10'
}

0 comments on commit d445303

Please sign in to comment.