Skip to content

Commit

Permalink
10/07/2023.
Browse files Browse the repository at this point in the history
  • Loading branch information
youndon committed Jul 10, 2023
1 parent 4feaca4 commit 31c0451
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 3 deletions.
28 changes: 26 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ android {
applicationId = "city.zouitel.jetnote"
minSdk = 25
targetSdk = 33
versionCode = 330
versionName = "3.3.0"
versionCode = 331
versionName = "3.3.1"

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables {
Expand Down Expand Up @@ -57,6 +57,30 @@ android {
excludes += "/META-INF/{AL2.0,LGPL2.1}"
}
}

/**
* Configure the build for multiple APKs
*/
splits {

/**
* Configure multiple APKs for screen densities.
*/
density {
isEnable = true
include("xxhdpi")
compatibleScreens("small", "normal", "large", "xlarge")
}
/**
* Configure multiple APKs for Application Binary Interfaces.
*/
abi {
isEnable = true
reset()
include("x86", "x86_64", "armeabi-v7a")
isUniversalApk = false
}
}
}

hilt {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ object Cons {
const val TAG = "This"
const val NUL = "null"

const val APP_VERSION = "3.3.0"
const val APP_VERSION = "3.3.1"

const val ID = "Id"
const val TITLE = "Title"
Expand Down

0 comments on commit 31c0451

Please sign in to comment.