diff --git a/app/build.gradle b/app/build.gradle index 8a01565..0509e2f 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -1,8 +1,12 @@ apply plugin: 'com.android.application' android { + compileSdkVersion 26 + buildToolsVersion "26.0.3" + defaultConfig { + applicationId "com.example.ninefourone.nutritionmaster" minSdkVersion 19 targetSdkVersion 26 @@ -10,12 +14,14 @@ android { versionName "1.0" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" } + buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } + } dependencies { @@ -25,4 +31,9 @@ dependencies { testImplementation 'junit:junit:4.12' androidTestImplementation 'com.android.support.test:runner:1.0.2' androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2' + //butterknife + implementation 'com.jakewharton:butterknife:8.8.1' + annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.1' + //logger + implementation 'com.orhanobut:logger:2.2.0' } diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index f192454..c4c5685 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -3,6 +3,7 @@ package="com.example.ninefourone.nutritionmaster">