Skip to content

Commit

Permalink
Update SDK, tools and libs, add Hugo to project
Browse files Browse the repository at this point in the history
  • Loading branch information
Maxr1998 committed Jun 16, 2017
1 parent a65efec commit e77a6bf
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 13 deletions.
20 changes: 8 additions & 12 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
apply plugin: 'com.android.application'
apply plugin: 'com.jakewharton.hugo'

ext.languages = ["de", "es", "fa", "fr", "in", "it", "ja", "pl", "ru", "zh-rCN", "zh-rTW"]
ext.supportLibraryVersion = "25.3.1"
ext.supportLibraryVersion = "26.0.0-beta2"
ext.c_languages = ["", "es-ES", "fa", "fr", "id", "it", "ja", "pl", "ru", "zh-CN", "zh-TW"]
ext.crowdinKey = null

android {
compileSdkVersion 25
buildToolsVersion '25.0.3'
compileSdkVersion 26
buildToolsVersion '26.0.0'
defaultConfig {
applicationId "de.Maxr1998.xposed.maxlock"
minSdkVersion 16
targetSdkVersion 25
targetSdkVersion 26
versionCode 45
versionName "6.4.1"
resConfigs languages
Expand Down Expand Up @@ -57,10 +58,6 @@ if (propFile.exists()) {
}

repositories {
jcenter()
maven {
url "https://jitpack.io"
}
flatDir {
dirs 'libs'
}
Expand All @@ -76,8 +73,8 @@ dependencies {
compile 'com.simplecityapps:recyclerview-fastscroll:1.0.5'
compile 'com.twofortyfouram:android-plugin-api-for-locale:1.0.2'
compile 'commons-io:commons-io:2.4'
provided 'de.robv.android.xposed:api:81'
provided 'de.robv.android.xposed:api:81:sources'
provided 'de.robv.android.xposed:api:82'
provided 'de.robv.android.xposed:api:82:sources'
//-- Android support and Google Services
compile "com.android.support:appcompat-v7:$supportLibraryVersion"
compile "com.android.support:customtabs:$supportLibraryVersion"
Expand All @@ -86,8 +83,7 @@ dependencies {
compile "com.android.support:recyclerview-v7:$supportLibraryVersion"
/* includes all other support-v4 libraries */
compile "com.android.support:support-fragment:$supportLibraryVersion"
compile 'com.google.android.gms:play-services-base:10.2.4'
compile 'com.google.android.gms:play-services-analytics:10.2.4'
compile 'com.google.android.gms:play-services-analytics:11.0.1'
// Local files
compile(name: 'PatternLock', ext: 'aar')
}
Expand Down
13 changes: 12 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,15 +1,26 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
repositories {
maven {
url "https://maven.google.com"
}
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.4.0-alpha7'
classpath 'com.android.tools.build:gradle:3.0.0-alpha4'
classpath 'com.jakewharton.hugo:hugo-plugin:1.2.1'
}
}

allprojects {
repositories {
maven {
url "https://maven.google.com"
}
jcenter()
maven {
url "https://jitpack.io"
}
}
}

0 comments on commit e77a6bf

Please sign in to comment.