| 123456789101112131415161718 |
- apply plugin: "com.android.library"
- android {
- compileSdkVersion 23
- buildToolsVersion "23.0.1"
- defaultConfig {
- minSdkVersion 16
- targetSdkVersion 22
- }
- }
- dependencies {
- implementation fileTree(dir: "libs", include: ["*.jar"])
- implementation "com.android.support:appcompat-v7:23.0.1"
- implementation "com.facebook.react:react-native:+" // From node_modules
- }
|