build.gradle (krita-5.1.3.tar.xz) | : | build.gradle (krita-5.1.4.tar.xz) | ||
---|---|---|---|---|
skipping to change at line 145 | skipping to change at line 145 | |||
def versionMajor = 5 | def versionMajor = 5 | |||
def versionMinor = 1 | def versionMinor = 1 | |||
/** | /** | |||
* This version does **not** correspond to the patch version | * This version does **not** correspond to the patch version | |||
* of Krita. Instead, it is just incremented for every public | * of Krita. Instead, it is just incremented for every public | |||
* (including alpha and beta) release of versionMajor.versionMinor | * (including alpha and beta) release of versionMajor.versionMinor | |||
* branch | * branch | |||
*/ | */ | |||
def versionRelease = 16 | def versionRelease = 17 | |||
defaultConfig { | defaultConfig { | |||
targetSdkVersion 31 | targetSdkVersion 31 | |||
minSdkVersion 23 | minSdkVersion 23 | |||
versionCode project.ext.constant * 1000000 + versionMajor * 10000 + vers ionMinor * 100 + versionRelease | versionCode project.ext.constant * 1000000 + versionMajor * 10000 + vers ionMinor * 100 + versionRelease | |||
versionName "5.1.3" | versionName "5.1.4" | |||
archivesBaseName = "krita-$abi-$versionName" | archivesBaseName = System.getenv('KRITA_BUILD_APPBUNDLE') ? "krita-$vers | |||
ionName" : "krita-$abi-$versionName" | ||||
} | } | |||
preBuild.dependsOn(configure) | preBuild.dependsOn(configure) | |||
configure.onlyIf { isPackagingAPK() } | configure.onlyIf { isPackagingAPK() } | |||
configure.finalizedBy(writeConfig) | configure.finalizedBy(writeConfig) | |||
configure.finalizedBy(copyLibs) | configure.finalizedBy(copyLibs) | |||
configure.finalizedBy(copyAssets) | configure.finalizedBy(copyAssets) | |||
configure.finalizedBy(copyLocaleFiles) | configure.finalizedBy(copyLocaleFiles) | |||
configure.finalizedBy(removeDuplicateAssets) | configure.finalizedBy(removeDuplicateAssets) | |||
} | } | |||
End of changes. 2 change blocks. | ||||
3 lines changed or deleted | 4 lines changed or added |