No Description

build.gradle 367B

123456789101112131415161718192021
  1. apply plugin: 'com.android.library'
  2. android {
  3. compileSdkVersion 23
  4. buildToolsVersion "23.0.3"
  5. defaultConfig {
  6. minSdkVersion 16
  7. targetSdkVersion 23
  8. versionCode 1
  9. versionName "1.0"
  10. ndk {
  11. abiFilters "armeabi-v7a", "x86"
  12. }
  13. }
  14. }
  15. dependencies {
  16. compile "com.facebook.react:react-native:+"
  17. }