Compare commits
No commits in common. "5cdf9d6318e032601db38a6e5cf9582c7cd67ae2" and "bf09f1d14df6d56d388982dfeeaa804a700e7b7c" have entirely different histories.
5cdf9d6318
...
bf09f1d14d
3 changed files with 7 additions and 39 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
|
@ -42,7 +42,7 @@ buck-out/
|
||||||
*.keystore
|
*.keystore
|
||||||
!debug.keystore
|
!debug.keystore
|
||||||
*.jks
|
*.jks
|
||||||
/android/keystores/release.keystore.properties
|
/android/gradle.properties
|
||||||
|
|
||||||
# fastlane
|
# fastlane
|
||||||
#
|
#
|
||||||
|
|
|
||||||
|
|
@ -124,13 +124,6 @@ def jscFlavor = 'org.webkit:android-jsc:+'
|
||||||
*/
|
*/
|
||||||
def enableHermes = project.ext.react.get("enableHermes", false);
|
def enableHermes = project.ext.react.get("enableHermes", false);
|
||||||
|
|
||||||
/**
|
|
||||||
* Load release keystore
|
|
||||||
*/
|
|
||||||
def keystorePropertiesFile = rootProject.file("keystores/release.keystore.properties");
|
|
||||||
def keystoreProperties = new Properties()
|
|
||||||
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
|
|
||||||
|
|
||||||
android {
|
android {
|
||||||
compileSdkVersion rootProject.ext.compileSdkVersion
|
compileSdkVersion rootProject.ext.compileSdkVersion
|
||||||
|
|
||||||
|
|
@ -163,10 +156,12 @@ android {
|
||||||
keyPassword 'android'
|
keyPassword 'android'
|
||||||
}
|
}
|
||||||
release {
|
release {
|
||||||
storeFile file(keystoreProperties['UPLOAD_STORE_FILE'])
|
if (project.hasProperty('MYAPP_UPLOAD_STORE_FILE')) {
|
||||||
storePassword keystoreProperties['UPLOAD_STORE_PASSWORD']
|
storeFile file(MYAPP_UPLOAD_STORE_FILE)
|
||||||
keyAlias keystoreProperties['UPLOAD_KEY_ALIAS']
|
storePassword MYAPP_UPLOAD_STORE_PASSWORD
|
||||||
keyPassword keystoreProperties['UPLOAD_KEY_PASSWORD']
|
keyAlias MYAPP_UPLOAD_KEY_ALIAS
|
||||||
|
keyPassword MYAPP_UPLOAD_KEY_PASSWORD
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
buildTypes {
|
buildTypes {
|
||||||
|
|
|
||||||
|
|
@ -1,27 +0,0 @@
|
||||||
# Project-wide Gradle settings.
|
|
||||||
|
|
||||||
# IDE (e.g. Android Studio) users:
|
|
||||||
# Gradle settings configured through the IDE *will override*
|
|
||||||
# any settings specified in this file.
|
|
||||||
|
|
||||||
# For more details on how to configure your build environment visit
|
|
||||||
# http://www.gradle.org/docs/current/userguide/build_environment.html
|
|
||||||
|
|
||||||
# Specifies the JVM arguments used for the daemon process.
|
|
||||||
# The setting is particularly useful for tweaking memory settings.
|
|
||||||
# Default value: -Xmx10248m -XX:MaxPermSize=256m
|
|
||||||
# org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
|
|
||||||
|
|
||||||
# When configured, Gradle will run in incubating parallel mode.
|
|
||||||
# This option should only be used with decoupled projects. More details, visit
|
|
||||||
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
|
|
||||||
# org.gradle.parallel=true
|
|
||||||
|
|
||||||
# AndroidX package structure to make it clearer which packages are bundled with the
|
|
||||||
# Android operating system, and which are packaged with your app's APK
|
|
||||||
# https://developer.android.com/topic/libraries/support-library/androidx-rn
|
|
||||||
android.useAndroidX=true
|
|
||||||
# Automatically convert third-party libraries to use AndroidX
|
|
||||||
android.enableJetifier=true
|
|
||||||
# Version of flipper SDK to use with React Native
|
|
||||||
FLIPPER_VERSION=0.37.0
|
|
||||||
Loading…
Reference in a new issue