File tree Expand file tree Collapse file tree 14 files changed +32
-220
lines changed
java/com/firebase/ui/auth/ui/email Expand file tree Collapse file tree 14 files changed +32
-220
lines changed Original file line number Diff line number Diff line change @@ -32,24 +32,3 @@ after_failure:
32
32
- cat app/build/reports/lint-results.html
33
33
- cat app/build/reports/findbugs.html
34
34
- cat app/build/reports/pmd.html
35
-
36
- # auth
37
- - cat auth/build/reports/checkstyle.html
38
- - cat auth/build/reports/lint-results.xml
39
- - cat auth/build/reports/lint-results.html
40
- - cat auth/build/reports/findbugs.html
41
- - cat auth/build/reports/pmd.html
42
-
43
- # database
44
- - cat database/build/reports/checkstyle.html
45
- - cat database/build/reports/lint-results.xml
46
- - cat database/build/reports/lint-results.html
47
- - cat database/build/reports/findbugs.html
48
- - cat database/build/reports/pmd.html
49
-
50
- # storage
51
- - cat storage/build/reports/checkstyle.html
52
- - cat storage/build/reports/lint-results.xml
53
- - cat storage/build/reports/lint-results.html
54
- - cat storage/build/reports/findbugs.html
55
- - cat storage/build/reports/pmd.html
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" utf-8" ?>
2
2
<manifest
3
3
xmlns : android =" http://schemas.android.com/apk/res/android"
4
+ xmlns : tools =" http://schemas.android.com/tools"
4
5
package =" com.firebase.uidemo" >
5
6
6
7
<uses-permission android : name =" android.permission.INTERNET" />
13
14
android : icon =" @mipmap/ic_launcher"
14
15
android : label =" @string/app_name"
15
16
android : theme =" @style/AppTheme"
16
- android : supportsRtl =" true" >
17
+ android : supportsRtl =" true"
18
+ tools : ignore =" GoogleAppIndexingWarning" >
17
19
<activity android : name =" .ChooserActivity" >
18
20
<intent-filter >
19
21
<action android : name =" android.intent.action.MAIN" />
Original file line number Diff line number Diff line change 46
46
import com .google .firebase .database .FirebaseDatabase ;
47
47
import com .google .firebase .database .Query ;
48
48
49
+ @ SuppressWarnings ("LogConditional" )
49
50
public class ChatActivity extends AppCompatActivity implements FirebaseAuth .AuthStateListener {
50
51
private static final String TAG = "RecyclerViewDemo" ;
51
52
Original file line number Diff line number Diff line change 34
34
import pub .devrel .easypermissions .AfterPermissionGranted ;
35
35
import pub .devrel .easypermissions .EasyPermissions ;
36
36
37
+ @ SuppressWarnings ("LogConditional" )
37
38
public class ImageActivity extends AppCompatActivity {
38
39
39
40
private static final String TAG = "ImageDemo" ;
Original file line number Diff line number Diff line change 63
63
<item name =" android:colorForeground" >@color/material_gray_850</item >
64
64
<item name =" android:navigationBarColor" >@android:color/black</item >
65
65
<item name =" android:statusBarColor" >@android:color/black</item >
66
- <item name =" android:textColor" >@color/abc_primary_text_material_dark </item >
67
- <item name =" android:textColorPrimary" >@color/abc_primary_text_material_dark </item >
68
- <item name =" android:textColorPrimaryInverse" >@color/abc_primary_text_material_light </item >
69
- <item name =" android:textColorSecondary" >@color/abc_secondary_text_material_dark </item >
70
- <item name =" android:textColorSecondaryInverse" >@color/abc_secondary_text_material_light </item >
66
+ <item name =" android:textColor" >@color/text_default_material_dark_primary </item >
67
+ <item name =" android:textColorPrimary" >@color/text_default_material_dark_primary </item >
68
+ <item name =" android:textColorPrimaryInverse" >@color/text_default_material_light_primary </item >
69
+ <item name =" android:textColorSecondary" >@color/text_default_material_dark_secondary </item >
70
+ <item name =" android:textColorSecondaryInverse" >@color/text_default_material_light_secondary </item >
71
71
<item name =" android:windowBackground" >@color/material_gray_850</item >
72
72
</style >
73
73
Original file line number Diff line number Diff line change 3
3
<color name =" colorPrimaryDark" >#0288D1</color >
4
4
<color name =" colorAccent" >#FFA000</color >
5
5
6
+ <!-- Text -->
7
+ <color name =" text_default_material_dark_primary" >#ffffffff</color >
8
+ <color name =" text_default_material_light_primary" >#de000000</color >
9
+ <color name =" text_default_material_dark_secondary" >#b3ffffff</color >
10
+ <color name =" text_default_material_light_secondary" >#8a000000</color >
11
+
6
12
<color name =" material_deep_purple_50" >#EDE7F6</color >
7
13
<color name =" material_deep_purple_500" >#673AB7</color >
8
14
<color name =" material_deep_purple_700" >#512DA8</color >
Original file line number Diff line number Diff line change 38
38
<item name =" colorAccent" >@android:color/black</item >
39
39
<item name =" android:colorBackground" >@color/material_gray_850</item >
40
40
<item name =" android:colorForeground" >@android:color/white</item >
41
- <item name =" android:textColor" >@color/abc_primary_text_material_dark </item >
42
- <item name =" android:textColorPrimary" >@color/abc_primary_text_material_dark </item >
43
- <item name =" android:textColorPrimaryInverse" >@color/abc_primary_text_material_light </item >
44
- <item name =" android:textColorSecondary" >@color/abc_secondary_text_material_dark </item >
45
- <item name =" android:textColorSecondaryInverse" >@color/abc_secondary_text_material_light </item >
41
+ <item name =" android:textColor" >@color/text_default_material_dark_primary </item >
42
+ <item name =" android:textColorPrimary" >@color/text_default_material_dark_primary </item >
43
+ <item name =" android:textColorPrimaryInverse" >@color/text_default_material_light_primary </item >
44
+ <item name =" android:textColorSecondary" >@color/text_default_material_dark_secondary </item >
45
+ <item name =" android:textColorSecondaryInverse" >@color/text_default_material_light_secondary </item >
46
46
<item name =" android:windowBackground" >@color/material_gray_850</item >
47
47
</style >
48
48
Original file line number Diff line number Diff line change 33
33
34
34
<activity
35
35
android : name =" .ui.email.RegisterEmailActivity"
36
+ android : label =" @string/title_check_email"
36
37
android : exported =" false"
37
38
android : theme =" @style/FirebaseUI" />
38
39
Original file line number Diff line number Diff line change 32
32
33
33
/**
34
34
* Activity to control the entire email sign up flow. Plays host to {@link CheckEmailFragment}
35
- * and {@link RegisterEmailFragment} and triggers {@link WelcomeBackPasswordPrompt}.
35
+ * and {@link RegisterEmailFragment} and triggers {@link WelcomeBackPasswordPrompt}
36
+ * and {@link WelcomeBackIdpPrompt}.
36
37
*/
37
38
public class RegisterEmailActivity extends AppCompatBase implements
38
39
CheckEmailFragment .CheckEmailListener {
Original file line number Diff line number Diff line change 4
4
android : duration =" @android:integer/config_mediumAnimTime"
5
5
android : fromXDelta =" 100%p"
6
6
android : toXDelta =" 0%p" />
7
- <!-- <alpha-->
8
- <!-- android:duration="@android:integer/config_mediumAnimTime"-->
9
- <!-- android:fromAlpha="0.0"-->
10
- <!-- android:toAlpha="1.0" />-->
11
7
</set >
You can’t perform that action at this time.
0 commit comments