Skip to content

Instantly share code, notes, and snippets.

@1fabiopereira
Created December 13, 2017 11:17
Show Gist options
  • Save 1fabiopereira/765fe69291e3877546f448c571bc1fc3 to your computer and use it in GitHub Desktop.
Save 1fabiopereira/765fe69291e3877546f448c571bc1fc3 to your computer and use it in GitHub Desktop.
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.3.1'
}
}
apply plugin: 'com.android.library'
android {
compileSdkVersion 25
buildToolsVersion "25.0.0"
defaultConfig {
minSdkVersion 16
targetSdkVersion 22
versionCode 1
versionName "1.0"
}
lintOptions {
abortOnError false
}
}
dependencies {
compile 'com.facebook.react:react-native:+'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment