File tree Expand file tree Collapse file tree 3 files changed +6
-34
lines changed Expand file tree Collapse file tree 3 files changed +6
-34
lines changed Original file line number Diff line number Diff line change @@ -5,27 +5,20 @@ android {
5
5
compileSdkVersion 23
6
6
buildToolsVersion " 23.0.2"
7
7
8
- // STOPSHIP: This is temporarily needed for EAP SDK but should be removed before release
9
- enforceUniquePackageName false
10
-
11
8
defaultConfig {
12
9
applicationId " com.firebase.uidemo"
13
10
minSdkVersion 16
14
11
targetSdkVersion 23
15
12
versionCode 1
16
13
versionName " 1.0"
17
14
}
15
+
18
16
buildTypes {
19
17
release {
20
18
minifyEnabled false
21
19
proguardFiles getDefaultProguardFile(' proguard-android.txt' ), ' proguard-rules.pro'
22
20
}
23
21
}
24
- packagingOptions {
25
- exclude ' META-INF/LICENSE'
26
- exclude ' META-INF/NOTICE'
27
- exclude ' META-INF/NOTICE.txt'
28
- }
29
22
30
23
}
31
24
Original file line number Diff line number Diff line change 15
15
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
16
16
# public *;
17
17
#}
18
+
19
+ # See:
20
+ # https://firebase-dot-devsite.googleplex.com/docs/auth/android/start/#proguard
21
+ -keepattributes Signature
22
+ -keepattributes *Annotation*
Original file line number Diff line number Diff line change @@ -4,9 +4,6 @@ android {
4
4
compileSdkVersion 23
5
5
buildToolsVersion " 23.0.2"
6
6
7
- // STOPSHIP: This is temporarily needed for EAP SDK but should be removed before release
8
- enforceUniquePackageName false
9
-
10
7
defaultConfig {
11
8
minSdkVersion 16
12
9
targetSdkVersion 23
@@ -20,29 +17,6 @@ android {
20
17
proguardFiles getDefaultProguardFile(' proguard-android.txt' ), ' proguard-rules.pro'
21
18
}
22
19
}
23
-
24
- packagingOptions {
25
- exclude ' META-INF/LICENSE'
26
- exclude ' META-INF/LICENSE-FIREBASE.txt'
27
- exclude ' META-INF/NOTICE'
28
- }
29
- }
30
-
31
- android. libraryVariants. all { variant ->
32
- task(" generate${ variant.name.capitalize()} Javadoc" , type : Javadoc ) {
33
- description " Generates Javadoc for $variant . name . "
34
- source = variant. javaCompile. source
35
- ext. androidJar = " ${ android.sdkDirectory} /platforms/${ android.compileSdkVersion} /android.jar"
36
- classpath = files(variant. javaCompile. classpath. files) + files(ext. androidJar)
37
- options. links(" http://docs.oracle.com/javase/7/docs/api/" );
38
- options. links(" http://d.android.com/reference/" );
39
- }
40
- task(" bundle${ variant.name.capitalize()} Javadoc" , type : Jar ) {
41
- description " Bundles Javadoc into zip for $variant . name . "
42
- classifier = " javadoc"
43
- destinationDir = file(" build/outputs" )
44
- from tasks[" generate${ variant.name.capitalize()} Javadoc" ]
45
- }
46
20
}
47
21
48
22
dependencies {
You can’t perform that action at this time.
0 commit comments