我使用 react-native-config 在生产环境和开发环境之间进行切换。
我可以根据 IOS 方案切换环境 dev/prod(捆绑器标识符、appIcon、splashScreeen、appName、..)
对于开发:
ENVFILE=.env npx react-native run-ios --scheme 'testConfigAppDev'
和产品:
ENVFILE=.env.production npx react-native run-ios --scheme 'testConfigApp'
如果我想使用它类似于android:
对于开发:
ENVFILE=.env npx react-native run-android --variant debug
和产品:
ENVFILE=.env.production npx react-native run-ios --scheme 'testConfigApp'
我想在一个项目下有两种类型的应用程序开发和产品应用程序 ID 例如:com.my.app用于生产和com.my.app.dev用于开发
我想切换环境 dev/prod (bundle identifier, appIcon, splashScreeen, appName, ..)
但是我每次都使用相同的 appIcon 和 appName 构建相同的应用程序。
在 Android/app/build.gradle 中:
android {
compileSdkVersion rootProject.ext.compileSdkVersion
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
defaultConfig {
//applicationId project.env.get("APP_ID")
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 1
versionName "1.0"
resValue "string", "app_name", project.env.get("APP_DISPLAY_NAME")
resValue "string", "build_config_package", project.env.get("APP_ID")
}
splits {
abi {
reset()
enable enableSeparateBuildPerCPUArchitecture
universalApk false // If true, also generate a universal APK
include "armeabi-v7a", "x86", "arm64-v8a", "x86_64"
}
}
signingConfigs {
debug {
storeFile file('debug.keystore')
storePassword 'android'
keyAlias 'androiddebugkey'
keyPassword 'android'
}
}
buildTypes {
debug {
signingConfig signingConfigs.debug
debuggable true
applicationIdSuffix ".dev"
}
release {
// Caution! In production, you need to generate your own keystore file.
// see https://reactnative.dev/docs/signed-apk-android.
signingConfig signingConfigs.debug
minifyEnabled enableProguardInReleaseBuilds
proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
}
}
// applicationVariants are e.g. debug, release
applicationVariants.all { variant ->
variant.outputs.each { output ->
// For each separate APK per architecture, set a unique version code as described here:
// https://developer.android.com/studio/build/configure-apk-splits.html
def versionCodes = ["armeabi-v7a": 1, "x86": 2, "arm64-v8a": 3, "x86_64": 4]
def abi = output.getFilter(OutputFile.ABI)
if (abi != null) { // null for the universal-debug, universal-release variants
output.versionCodeOverride =
versionCodes.get(abi) * 1048576 + defaultConfig.versionCode
}
}
}
}
我的目标是使用 application_id com.my.app 和开发 com.my.app.dev 构建一个用于生产的应用程序。
谢谢你们的帮助。