Set versionCode=36106

This commit is contained in:
Brandon Presley 2022-11-30 14:34:49 +13:00
parent 8e31dc2186
commit d3c3a09a0f
2 changed files with 19 additions and 21 deletions

View File

@ -1,8 +1,6 @@
apply plugin: "com.android.application" apply plugin: "com.android.application"
apply plugin: "kotlin-android" apply plugin: "kotlin-android"
import com.android.build.OutputFile
project.ext.react = [ project.ext.react = [
enableHermes: true, // clean and rebuild if changing enableHermes: true, // clean and rebuild if changing
] ]
@ -43,8 +41,8 @@ android {
missingDimensionStrategy "RNNotifications.reactNativeVersion", "reactNative60" missingDimensionStrategy "RNNotifications.reactNativeVersion", "reactNative60"
minSdkVersion rootProject.ext.minSdkVersion minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 36105 versionCode 36106
versionName "1.79" versionName "1.80"
buildConfigField "boolean", "IS_NEW_ARCHITECTURE_ENABLED", isNewArchitectureEnabled().toString() buildConfigField "boolean", "IS_NEW_ARCHITECTURE_ENABLED", isNewArchitectureEnabled().toString()
if (isNewArchitectureEnabled()) { if (isNewArchitectureEnabled()) {
@ -65,7 +63,7 @@ android {
} }
if (!enableSeparateBuildPerCPUArchitecture) { if (!enableSeparateBuildPerCPUArchitecture) {
ndk { ndk {
abiFilters (*reactNativeArchitectures()) abiFilters(*reactNativeArchitectures())
} }
} }
} }
@ -110,7 +108,7 @@ android {
reset() reset()
enable enableSeparateBuildPerCPUArchitecture enable enableSeparateBuildPerCPUArchitecture
universalApk false universalApk false
include (*reactNativeArchitectures()) include(*reactNativeArchitectures())
} }
} }
signingConfigs { signingConfigs {
@ -165,21 +163,21 @@ dependencies {
implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.0.0" implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.0.0"
debugImplementation("com.facebook.flipper:flipper:${FLIPPER_VERSION}") { debugImplementation("com.facebook.flipper:flipper:${FLIPPER_VERSION}") {
exclude group:'com.facebook.fbjni' exclude group: 'com.facebook.fbjni'
} }
debugImplementation("com.facebook.flipper:flipper-network-plugin:${FLIPPER_VERSION}") { debugImplementation("com.facebook.flipper:flipper-network-plugin:${FLIPPER_VERSION}") {
exclude group:'com.facebook.flipper' exclude group: 'com.facebook.flipper'
exclude group:'com.squareup.okhttp3', module:'okhttp' exclude group: 'com.squareup.okhttp3', module: 'okhttp'
} }
debugImplementation("com.facebook.flipper:flipper-fresco-plugin:${FLIPPER_VERSION}") { debugImplementation("com.facebook.flipper:flipper-fresco-plugin:${FLIPPER_VERSION}") {
exclude group:'com.facebook.flipper' exclude group: 'com.facebook.flipper'
} }
if (enableHermes) { if (enableHermes) {
implementation("com.facebook.react:hermes-engine:+") { // From node_modules implementation("com.facebook.react:hermes-engine:+") { // From node_modules
exclude group:'com.facebook.fbjni' exclude group: 'com.facebook.fbjni'
} }
} else { } else {
implementation jscFlavor implementation jscFlavor

View File

@ -1,6 +1,6 @@
{ {
"name": "massive", "name": "massive",
"version": "1.79", "version": "1.80",
"private": true, "private": true,
"license": "GPL-3.0-only", "license": "GPL-3.0-only",
"scripts": { "scripts": {