Skip to content

Commit bf171a2

Browse files
committed
Integrate Latest @ 166136277
Changes to all ... - Update build files to ignore Proguard warnings and add Maven repo. CL: 166136277
1 parent 741c626 commit bf171a2

File tree

18 files changed

+30
-1
lines changed

18 files changed

+30
-1
lines changed

Diff for: admob/testapp/build.gradle

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
buildscript {
33
repositories {
44
mavenLocal()
5+
maven { url 'https://maven.google.com' }
56
jcenter()
67
}
78
dependencies {
@@ -13,6 +14,7 @@ buildscript {
1314
allprojects {
1415
repositories {
1516
mavenLocal()
17+
maven { url 'https://maven.google.com' }
1618
jcenter()
1719
}
1820
}
@@ -83,6 +85,7 @@ android {
8385
proguardFile getDefaultProguardFile('proguard-android.txt')
8486
proguardFile file(project.ext.firebase_cpp_sdk_dir + "/libs/android/app.pro")
8587
proguardFile file(project.ext.firebase_cpp_sdk_dir + "/libs/android/admob.pro")
88+
proguardFile file('proguard.pro')
8689
}
8790
}
8891
}

Diff for: admob/testapp/proguard.pro

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
-ignorewarnings
2+
-keep,includedescriptorclasses public class com.google.firebase.example.LoggingUtils { *; }

Diff for: analytics/testapp/build.gradle

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
buildscript {
33
repositories {
44
mavenLocal()
5+
maven { url 'https://maven.google.com' }
56
jcenter()
67
}
78
dependencies {
@@ -13,6 +14,7 @@ buildscript {
1314
allprojects {
1415
repositories {
1516
mavenLocal()
17+
maven { url 'https://maven.google.com' }
1618
jcenter()
1719
}
1820
}

Diff for: analytics/testapp/proguard.pro

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1+
-ignorewarnings
12
-keep,includedescriptorclasses public class com.google.firebase.example.LoggingUtils { *; }

Diff for: auth/testapp/build.gradle

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
buildscript {
33
repositories {
44
mavenLocal()
5+
maven { url 'https://maven.google.com' }
56
jcenter()
67
}
78
dependencies {
@@ -13,6 +14,7 @@ buildscript {
1314
allprojects {
1415
repositories {
1516
mavenLocal()
17+
maven { url 'https://maven.google.com' }
1618
jcenter()
1719
}
1820
}

Diff for: auth/testapp/proguard.pro

+1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1+
-ignorewarnings
12
-keep,includedescriptorclasses public class com.google.firebase.example.LoggingUtils { *; }
23
-keep,includedescriptorclasses public class com.google.firebase.example.TextEntryField { *; }

Diff for: database/testapp/build.gradle

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
buildscript {
33
repositories {
44
mavenLocal()
5+
maven { url 'https://maven.google.com' }
56
jcenter()
67
}
78
dependencies {
@@ -13,6 +14,7 @@ buildscript {
1314
allprojects {
1415
repositories {
1516
mavenLocal()
17+
maven { url 'https://maven.google.com' }
1618
jcenter()
1719
}
1820
}

Diff for: database/testapp/proguard.pro

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1+
-ignorewarnings
12
-keep,includedescriptorclasses public class com.google.firebase.example.LoggingUtils { *; }

Diff for: dynamic_links/testapp/build.gradle

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
buildscript {
33
repositories {
44
mavenLocal()
5+
maven { url 'https://maven.google.com' }
56
jcenter()
67
}
78
dependencies {
@@ -13,6 +14,7 @@ buildscript {
1314
allprojects {
1415
repositories {
1516
mavenLocal()
17+
maven { url 'https://maven.google.com' }
1618
jcenter()
1719
}
1820
}

Diff for: dynamic_links/testapp/proguard.pro

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1+
-ignorewarnings
12
-keep,includedescriptorclasses public class com.google.firebase.example.LoggingUtils { *; }

Diff for: invites/testapp/build.gradle

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
buildscript {
33
repositories {
44
mavenLocal()
5+
maven { url 'https://maven.google.com' }
56
jcenter()
67
}
78
dependencies {
@@ -13,6 +14,7 @@ buildscript {
1314
allprojects {
1415
repositories {
1516
mavenLocal()
17+
maven { url 'https://maven.google.com' }
1618
jcenter()
1719
}
1820
}

Diff for: invites/testapp/proguard.pro

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1+
-ignorewarnings
12
-keep,includedescriptorclasses public class com.google.firebase.example.LoggingUtils { *; }

Diff for: messaging/testapp/build.gradle

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
buildscript {
33
repositories {
44
mavenLocal()
5+
maven { url 'https://maven.google.com' }
56
jcenter()
67
}
78
dependencies {
@@ -13,6 +14,7 @@ buildscript {
1314
allprojects {
1415
repositories {
1516
mavenLocal()
17+
maven { url 'https://maven.google.com' }
1618
jcenter()
1719
}
1820
}

Diff for: messaging/testapp/proguard.pro

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1+
-ignorewarnings
12
-keep,includedescriptorclasses public class com.google.firebase.example.LoggingUtils { *; }

Diff for: remote_config/testapp/build.gradle

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
buildscript {
33
repositories {
44
mavenLocal()
5+
maven { url 'https://maven.google.com' }
56
jcenter()
67
}
78
dependencies {
@@ -13,6 +14,7 @@ buildscript {
1314
allprojects {
1415
repositories {
1516
mavenLocal()
17+
maven { url 'https://maven.google.com' }
1618
jcenter()
1719
}
1820
}

Diff for: remote_config/testapp/proguard.pro

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1+
-ignorewarnings
12
-keep,includedescriptorclasses public class com.google.firebase.example.LoggingUtils { *; }

Diff for: storage/testapp/build.gradle

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
buildscript {
33
repositories {
44
mavenLocal()
5+
maven { url 'https://maven.google.com' }
56
jcenter()
67
}
78
dependencies {
@@ -13,6 +14,7 @@ buildscript {
1314
allprojects {
1415
repositories {
1516
mavenLocal()
17+
maven { url 'https://maven.google.com' }
1618
jcenter()
1719
}
1820
}

Diff for: storage/testapp/proguard.pro

+2-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
-keep,includedescriptorclasses public class com.google.firebase.example.LoggingUtils { *; }
1+
-ignorewarnings
2+
-keep,includedescriptorclasses public class com.google.firebase.example.LoggingUtils { * ; }

0 commit comments

Comments
 (0)