Skip to content
This repository has been archived by the owner on Jul 1, 2020. It is now read-only.

Commit

Permalink
gradle cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
manijshrestha committed Apr 8, 2017
1 parent cad6bdf commit c3e30f9
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ subprojects {
ext.pluginContainer = project.getPlugins()
if(ext.pluginContainer.hasPlugin("com.android.application") || ext.pluginContainer.hasPlugin("com.android.library")) {
android {
compileSdkVersion 25
buildToolsVersion '25.0.2'
compileSdkVersion versions.compile_sdk
buildToolsVersion versions.build_tools

android {
lintOptions {
Expand All @@ -42,8 +42,8 @@ subprojects {
}

defaultConfig {
minSdkVersion 9
targetSdkVersion 25
minSdkVersion versions.min_sdk
targetSdkVersion versions.target_sdk
versionCode 191
versionName "1.9.1"
}
Expand Down
3 changes: 3 additions & 0 deletions dependencies.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
ext.versions = [
compile_sdk : 25,
min_sdk : 9,
target_sdk : 25,
build_tools : "25.0.2",
support_lib : "25.3.1",
zxing : "3.3.0",
Expand Down
1 change: 0 additions & 1 deletion zbar-sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,4 @@ android {
defaultConfig {
applicationId "${project.group}.zbar.sample"
}
buildToolsVersion versions.build_tools
}

0 comments on commit c3e30f9

Please sign in to comment.