Skip to content

Instantly share code, notes, and snippets.

@tscholze
Created November 27, 2017 18:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tscholze/ecb8a860157d3a52b8a79b53f293f104 to your computer and use it in GitHub Desktop.
Save tscholze/ecb8a860157d3a52b8a79b53f293f104 to your computer and use it in GitHub Desktop.
Tila shared gradle
apply plugin: 'com.android.library'
android {
compileSdkVersion 26
defaultConfig {
minSdkVersion 26
targetSdkVersion 26
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.android.support:appcompat-v7:26.1.0'
compile 'com.google.firebase:firebase-database:11.6.0'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment