68 lines
2.1 KiB
Groovy
68 lines
2.1 KiB
Groovy
apply plugin: "com.android.application"
|
|
|
|
import com.android.build.OutputFile
|
|
|
|
apply from: "../../node_modules/react-native/react.gradle"
|
|
|
|
def enableSeparateBuildPerCPUArchitecture = false
|
|
|
|
def enableProguardInReleaseBuilds = false
|
|
|
|
android {
|
|
compileSdkVersion 26
|
|
buildToolsVersion '26.0.3'
|
|
|
|
defaultConfig {
|
|
applicationId "com.example"
|
|
minSdkVersion 16
|
|
targetSdkVersion 25
|
|
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
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile fileTree(dir: "libs", include: ["*.jar"])
|
|
compile "com.android.support:appcompat-v7:26.1.0"
|
|
compile "com.android.support:recyclerview-v7:26.1.0"
|
|
compile "com.facebook.react:react-native:+" // From node_modules
|
|
compile project(":rncamerakit")
|
|
}
|
|
|
|
// 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'
|
|
}
|