From 3b5892e8698f7872af8a3b7e4b75c286df0d898c Mon Sep 17 00:00:00 2001 From: Leo Ma Date: Fri, 20 Jan 2017 16:42:29 +0800 Subject: [PATCH] Add camera flash permission Signed-off-by: Leo Ma --- app/src/main/AndroidManifest.xml | 1 + library/build.gradle | 8 ++++---- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index 13284ed..db2f327 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -5,6 +5,7 @@ + diff --git a/library/build.gradle b/library/build.gradle index 93c71e0..fd6258b 100644 --- a/library/build.gradle +++ b/library/build.gradle @@ -1,14 +1,14 @@ apply plugin: 'com.android.library' android { - compileSdkVersion 24 - buildToolsVersion "24.0.3" + compileSdkVersion 25 + buildToolsVersion "25.0.2" defaultConfig { minSdkVersion 16 targetSdkVersion 22 versionCode 1 - versionName "2.3" + versionName "2.4" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" ndk { @@ -28,6 +28,6 @@ dependencies { androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', { exclude group: 'com.android.support', module: 'support-annotations' }) - compile 'com.android.support:appcompat-v7:24.2.1' + compile 'com.android.support:appcompat-v7:25.0.1' testCompile 'junit:junit:4.12' }