build.gradle 403 B

123456789101112131415161718
  1. apply plugin: "com.android.library"
  2. android {
  3. compileSdkVersion 23
  4. buildToolsVersion "23.0.1"
  5. defaultConfig {
  6. minSdkVersion 16
  7. targetSdkVersion 22
  8. }
  9. }
  10. dependencies {
  11. implementation fileTree(dir: "libs", include: ["*.jar"])
  12. implementation "com.android.support:appcompat-v7:23.0.1"
  13. implementation "com.facebook.react:react-native:+" // From node_modules
  14. }