Skip to content

Instantly share code, notes, and snippets.

@1fabiopereira
Created February 16, 2018 17:02
Show Gist options
  • Save 1fabiopereira/cb6f0ad1d17b1a372b59442e571284c2 to your computer and use it in GitHub Desktop.
Save 1fabiopereira/cb6f0ad1d17b1a372b59442e571284c2 to your computer and use it in GitHub Desktop.
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.1.3'
}
}
apply plugin: 'com.android.library'
android {
compileSdkVersion 25
buildToolsVersion "25.0.1"
defaultConfig {
minSdkVersion 16
targetSdkVersion 22
versionCode 1
versionName "1.0"
}
lintOptions {
abortOnError false
}
}
repositories {
mavenCentral()
}
dependencies {
compile 'com.facebook.react:react-native:0.12.+'
compile 'com.google.android.gms:play-services-location:8.3.0'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment