1234567891011121314151617181920212223242526272829303132 |
- apply plugin: 'com.android.library'
-
- android {
- compileSdkVersion 23
- buildToolsVersion "23.0.1"
-
- defaultConfig {
- minSdkVersion 16
- targetSdkVersion 22
- versionCode 1
- versionName "1.0"
-
- testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
-
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- }
- }
-
- dependencies {
- implementation "com.facebook.react:react-native:+"
- implementation fileTree(dir: 'libs', include: ['*.jar'])
- }
-
- configurations.all {
- exclude group: 'com.facebook.react', module: 'react-native'
- }
|