Created
September 8, 2018 23:01
-
-
Save alejandro-rios/4171f2e2dc6afbfe2a73ddc6e60b256b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apply plugin: 'com.android.application' | |
android { | |
compileSdkVersion 27 | |
buildToolsVersion '27.0.3' | |
defaultConfig { | |
applicationId "com.f22labs.darthensondemo" | |
minSdkVersion 21 | |
targetSdkVersion 27 | |
versionCode 1 | |
versionName "1.0" | |
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" | |
} | |
buildTypes { | |
release { | |
minifyEnabled false | |
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' | |
} | |
} | |
} | |
dependencies { | |
// Module implementation | |
implementation project(':darthensondemo-navigation') | |
implementation 'com.android.support:appcompat-v7:27.1.1' | |
implementation 'com.f2prateek.dart:dart:3.0.1' | |
annotationProcessor 'com.f2prateek.dart:dart-processor:3.0.1' | |
implementation 'com.f2prateek.dart:henson:3.0.1' | |
annotationProcessor 'com.f2prateek.dart:henson-processor:3.0.1' | |
implementation 'com.jakewharton:butterknife:8.8.1' | |
annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.1' | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment