Skip to content

Commit

Permalink
Merge pull request #132 from ZeusWPI/unjack
Browse files Browse the repository at this point in the history
Unjack
  • Loading branch information
niknetniko authored Dec 18, 2016
2 parents 7feef55 + 1090a5a commit b54646a
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 7 deletions.
10 changes: 5 additions & 5 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apply plugin: 'com.android.application'
//Enable this when disabling jack
//apply plugin: 'me.tatarka.retrolambda'
apply plugin: 'me.tatarka.retrolambda'
apply plugin: 'com.cookpad.android.licensetools'

android {
Expand All @@ -17,9 +17,9 @@ android {

//Enable jack support
//When disabling jack, DON'T forget to enable retrolambda
jackOptions {
enabled true
}
// jackOptions {
// enabled true
// }

//Load the API keys from the file "secrets.properties".
Properties props = new Properties()
Expand Down Expand Up @@ -73,7 +73,7 @@ project.afterEvaluate {
}

//The support library version
final SUPPORT_LIBRARY_VERSION = '25.0.1'
final SUPPORT_LIBRARY_VERSION = '25.1.0'

dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ buildscript {
classpath 'com.cookpad.android.licensetools:license-tools-plugin:0.17.0'

//When disabling jack, uncomment this
//classpath 'me.tatarka:gradle-retrolambda:3.4.0'
classpath 'me.tatarka:gradle-retrolambda:3.4.0'

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
Expand Down
10 changes: 9 additions & 1 deletion firebasenoop/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,18 @@ apply plugin: 'com.android.library'
android {
compileSdkVersion 25
buildToolsVersion "25.0.2"

defaultConfig {
minSdkVersion 9
versionName "10.0.1"
versionCode 1001
}
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])

compile 'com.google.firebase:firebase-core:10.0.1'
compile ('com.google.firebase:firebase-core:10.0.1') {
exclude module:'support-v4'
}
}

0 comments on commit b54646a

Please sign in to comment.