File tree 1 file changed +25
-2
lines changed
1 file changed +25
-2
lines changed Original file line number Diff line number Diff line change
1
+ // START - required to allow working on this project inside Android Studio
2
+ // YES, jcenter is required twice - it somehow tricks studio into compiling deps below
3
+ // doesn't break anything anywhere else and projects using this lib work as normal
4
+ buildscript {
5
+ repositories {
6
+ jcenter()
7
+ }
8
+ dependencies {
9
+ classpath ' com.android.tools.build:gradle:2.1.3'
10
+ }
11
+ }
12
+ // END
13
+
1
14
apply plugin : ' com.android.library'
2
15
3
16
android {
@@ -18,10 +31,20 @@ android {
18
31
}
19
32
}
20
33
34
+ // START - required to allow working on this project inside Android Studio
35
+ // YES, jcenter is required twice - it somehow tricks studio into compiling deps below
36
+ // doesn't break anything anywhere else and projects using this lib work as normal
37
+ // you'll now have code completion/validation and all the other AS goodies.
38
+ allprojects {
39
+ repositories {
40
+ jcenter()
41
+ }
42
+ }
43
+ // END
44
+
21
45
dependencies {
22
46
compile ' com.facebook.react:react-native:0.20.+'
23
- compile ' com.google.android.gms:play-services-base:9.8.1'
24
-
47
+ compile ' com.google.android.gms:play-services-base:9.8.0'
25
48
compile ' com.google.firebase:firebase-core:9.8.0'
26
49
compile ' com.google.firebase:firebase-auth:9.8.0'
27
50
compile ' com.google.firebase:firebase-analytics:9.8.0'
You can’t perform that action at this time.
0 commit comments