We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 93dc1e5 commit f5cbc50Copy full SHA for f5cbc50
src/android/build-extras.gradle
@@ -1,6 +1,16 @@
1
2
def packageName = getPackageName()
3
4
+buildscript {
5
+ repositories {
6
+ maven { url 'https://maven.fabric.io/public' }
7
+ }
8
+
9
+ dependencies {
10
+ classpath 'io.fabric.tools:gradle:1.+'
11
12
+}
13
14
android {
15
defaultConfig {
16
applicationId packageName
@@ -12,7 +22,9 @@ repositories {
22
}
23
24
dependencies {
- compile 'com.crashlytics.sdk.android:crashlytics:2.5.5'
25
+ compile('com.crashlytics.sdk.android:crashlytics:2.6.6@aar') {
26
+ transitive = true;
27
28
17
29
18
30
def getPackageName() {
0 commit comments