Geen omschrijving

build.gradle 616B

12345678910111213141516171819202122232425262728
  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. versionCode 1
  9. versionName "1.0"
  10. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  11. }
  12. buildTypes {
  13. release {
  14. minifyEnabled false
  15. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  16. }
  17. }
  18. }
  19. dependencies {
  20. compile "com.facebook.react:react-native:+"
  21. compile fileTree(dir: 'libs', include: ['*.jar'])
  22. }