106 lines
3.8 KiB
Groovy
106 lines
3.8 KiB
Groovy
apply plugin: "com.android.application"
|
|
apply plugin: "com.google.firebase.firebase-perf"
|
|
|
|
import com.android.build.OutputFile
|
|
|
|
project.ext.react = [
|
|
// whether to bundle JS and assets in staging mode
|
|
bundleInDebug : false,
|
|
jsBundleDirDebug : "$buildDir/intermediates/assets/debug",
|
|
nodeExecutableAndArgs: ["/usr/local/bin/node"]
|
|
]
|
|
|
|
apply from: "../../node_modules/react-native/react.gradle"
|
|
apply from: "../../node_modules/react-native-vector-icons/fonts.gradle"
|
|
|
|
/**
|
|
* Set this to true to create two separate APKs instead of one:
|
|
* - An APK that only works on ARM devices
|
|
* - An APK that only works on x86 devices
|
|
* The advantage is the size of the APK is reduced by about 4MB.
|
|
* Upload all the APKs to the Play Store and people will download
|
|
* the correct one based on the CPU architecture of their device.
|
|
*/
|
|
def enableSeparateBuildPerCPUArchitecture = false
|
|
|
|
/**
|
|
* Run Proguard to shrink the Java bytecode in release builds.
|
|
*/
|
|
def enableProguardInReleaseBuilds = false
|
|
|
|
android {
|
|
compileSdkVersion 26
|
|
buildToolsVersion '25.0.3'
|
|
|
|
defaultConfig {
|
|
applicationId "com.reactnativefirebasedemo"
|
|
minSdkVersion 16
|
|
targetSdkVersion 26
|
|
versionCode 1
|
|
versionName "1.0"
|
|
ndk {
|
|
abiFilters "armeabi-v7a", "x86"
|
|
}
|
|
}
|
|
splits {
|
|
abi {
|
|
reset()
|
|
enable enableSeparateBuildPerCPUArchitecture
|
|
universalApk false // If true, also generate a universal APK
|
|
include "armeabi-v7a", "x86"
|
|
}
|
|
}
|
|
buildTypes {
|
|
release {
|
|
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:
|
|
// http://tools.android.com/tech-docs/new-build-system/user-guide/apk-splits
|
|
def versionCodes = ["armeabi-v7a": 1, "x86": 2]
|
|
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
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
project.ext.firebaseVersion = '11.4.2'
|
|
|
|
dependencies {
|
|
// compile(project(':react-native-firebase')) {
|
|
// transitive = false
|
|
// }
|
|
compile project(':react-native-vector-icons')
|
|
compile project(':react-native-firebase')
|
|
compile fileTree(dir: "libs", include: ["*.jar"])
|
|
compile "com.google.android.gms:play-services-base:$firebaseVersion"
|
|
compile "com.google.firebase:firebase-ads:$firebaseVersion"
|
|
compile "com.google.firebase:firebase-auth:$firebaseVersion"
|
|
compile "com.google.firebase:firebase-config:$firebaseVersion"
|
|
compile "com.google.firebase:firebase-core:$firebaseVersion"
|
|
compile "com.google.firebase:firebase-crash:$firebaseVersion"
|
|
compile "com.google.firebase:firebase-database:$firebaseVersion"
|
|
compile "com.google.firebase:firebase-messaging:$firebaseVersion"
|
|
compile "com.google.firebase:firebase-perf:$firebaseVersion"
|
|
compile "com.google.firebase:firebase-storage:$firebaseVersion"
|
|
compile "com.google.firebase:firebase-firestore:$firebaseVersion"
|
|
compile "com.android.support:appcompat-v7:26.0.1"
|
|
compile "com.facebook.react:react-native:+" // From node_modules
|
|
}
|
|
|
|
// Run this once to be able to run the application with BUCK
|
|
// puts all compile dependencies into folder libs for BUCK to use
|
|
task copyDownloadableDepsToLibs(type: Copy) {
|
|
from configurations.compile
|
|
into 'libs'
|
|
}
|
|
|
|
apply plugin: 'com.google.gms.google-services'
|