diff options
| author | Menny Even Danan <menny@evendanan.net> | 2016-03-30 14:43:02 +0000 |
|---|---|---|
| committer | Menny Even Danan <menny@evendanan.net> | 2016-03-30 16:07:03 +0000 |
| commit | 3787ab70af45352e1c6d85c07e3172b187deb84b (patch) | |
| tree | 17538c85880f497519e4b8f781449837aee3a061 | |
| parent | 505d1c02807650497a0e103f735dfbbb92376543 (diff) | |
| download | AnySoftKeyboard-3787ab70af45352e1c6d85c07e3172b187deb84b.tar.gz AnySoftKeyboard-3787ab70af45352e1c6d85c07e3172b187deb84b.tar.bz2 | |
orginazing repositories for all modules
| -rw-r--r-- | base/build.gradle | 5 | ||||
| -rw-r--r-- | base/src/main/AndroidManifest.xml | 4 | ||||
| -rw-r--r-- | build.gradle | 14 | ||||
| -rw-r--r-- | jnidictionaryv1/build.gradle | 4 | ||||
| -rw-r--r-- | jnidictionaryv2/build.gradle | 4 | ||||
| -rw-r--r-- | nextword/build.gradle | 4 |
6 files changed, 13 insertions, 22 deletions
diff --git a/base/build.gradle b/base/build.gradle index 92c7acc54..199605efe 100644 --- a/base/build.gradle +++ b/base/build.gradle @@ -13,10 +13,7 @@ android { } dependencies { - repositories { - mavenCentral() - maven { url "https://jitpack.io" } - } + compile 'com.getkeepsafe.relinker:relinker:1.2.1' compile "com.github.AnySoftKeyboard:AnySoftKeyboard-API:$AnySoftKeyboardApiVersion" compile "com.android.support:support-annotations:$supportLibVersion" } diff --git a/base/src/main/AndroidManifest.xml b/base/src/main/AndroidManifest.xml index 4050f33d8..e148b987f 100644 --- a/base/src/main/AndroidManifest.xml +++ b/base/src/main/AndroidManifest.xml @@ -1,3 +1,5 @@ -<manifest package="com.anysoftkeyboard.base"> +<manifest package="com.anysoftkeyboard.base" + xmlns:tools="http://schemas.android.com/tools"> + <uses-sdk tools:overrideLibrary="com.getkeepsafe.relinker" /> </manifest> diff --git a/build.gradle b/build.gradle index 079f2834d..226d46b57 100644 --- a/build.gradle +++ b/build.gradle @@ -31,6 +31,15 @@ apply plugin: 'com.android.application' apply plugin: 'io.fabric' apply plugin: 'com.github.triplet.play' +allprojects { + repositories { + jcenter() + mavenCentral() + maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' } + maven { url "https://jitpack.io" } + } +} + repositories { maven { url 'https://maven.fabric.io/public' } } @@ -170,11 +179,6 @@ play { } dependencies { - repositories { - mavenCentral() - maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' } - maven { url "https://jitpack.io" } - } compile project(':base') compile project(':nextword') compile project(':jnidictionaryv1') diff --git a/jnidictionaryv1/build.gradle b/jnidictionaryv1/build.gradle index a98eb3f7c..514d0c853 100644 --- a/jnidictionaryv1/build.gradle +++ b/jnidictionaryv1/build.gradle @@ -16,10 +16,6 @@ android { } dependencies { - repositories { - mavenCentral() - maven { url "https://jitpack.io" } - } compile "com.github.AnySoftKeyboard:AnySoftKeyboard-API:$AnySoftKeyboardApiVersion" compile project(':base') } diff --git a/jnidictionaryv2/build.gradle b/jnidictionaryv2/build.gradle index 41459eef0..12274816e 100644 --- a/jnidictionaryv2/build.gradle +++ b/jnidictionaryv2/build.gradle @@ -16,10 +16,6 @@ android { } dependencies { - repositories { - mavenCentral() - maven { url "https://jitpack.io" } - } compile "com.github.AnySoftKeyboard:AnySoftKeyboard-API:$AnySoftKeyboardApiVersion" compile project(':base') } diff --git a/nextword/build.gradle b/nextword/build.gradle index 9b09c6fd1..34864c947 100644 --- a/nextword/build.gradle +++ b/nextword/build.gradle @@ -24,10 +24,6 @@ android { } dependencies { - repositories { - mavenCentral() - maven { url "https://jitpack.io" } - } compile "com.github.AnySoftKeyboard:AnySoftKeyboard-API:$AnySoftKeyboardApiVersion" compile project(':base') } |
