Skip to content

Commit 593e646

Browse files
committed
added jrebel for android plugin to improve app development.
1 parent 3f59d5f commit 593e646

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

ServiceApp/build.gradle

+2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
apply plugin: 'com.android.application'
2+
// This does not break the build when Android Studio is missing the JRebel for Android plugin.
3+
apply plugin: 'com.zeroturnaround.jrebel.android'
24
apply plugin: 'io.fabric'
35
apply plugin: 'org.robolectric'
46

build.gradle

+5
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,15 @@ buildscript {
33
repositories {
44
jcenter()
55
maven { url 'https://maven.fabric.io/public' }
6+
maven {
7+
url 'https://repos.zeroturnaround.com/nexus/content/repositories/zt-public-releases'
8+
}
69
}
710

811
dependencies {
912
classpath 'com.android.tools.build:gradle:1.2.3'
13+
// This does not break the build when Android Studio is missing the JRebel for Android plugin.
14+
classpath 'com.zeroturnaround.jrebel.android:jr-android-gradle:0.9.+'
1015
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.0'
1116
classpath 'io.fabric.tools:gradle:1.15.2'
1217
classpath 'org.robolectric:robolectric-gradle-plugin:1.0.1'

0 commit comments

Comments
 (0)