File tree 3 files changed +9
-12
lines changed
java/org/buildmlearn/toolkit/activity
3 files changed +9
-12
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,6 @@ repositories {
14
14
maven { url ' https://maven.fabric.io/public' }
15
15
}
16
16
17
-
18
17
android {
19
18
signingConfigs {
20
19
config {
@@ -51,14 +50,13 @@ android {
51
50
}
52
51
53
52
dependencies {
53
+ compile(' com.crashlytics.sdk.android:crashlytics:2.6.5@aar' ) {
54
+ transitive = true ;
55
+ }
54
56
compile ' com.android.support:appcompat-v7:23.4.0'
55
57
compile ' com.android.support:cardview-v7:23.4.0'
56
58
compile ' com.android.support:recyclerview-v7:23.4.0'
57
59
compile ' com.android.support:design:23.4.0'
58
- compile(' com.crashlytics.sdk.android:crashlytics:2.3.1@aar' ) {
59
- transitive = true ;
60
- }
61
-
62
60
compile files(' libs/zipsigner-lib-1.17.jar' )
63
61
compile files(' libs/zipsigner-lib-optional-1.16.jar' )
64
62
compile files(' libs/kellinwood-logging-android-1.4.jar' )
Original file line number Diff line number Diff line change 42
42
android : configChanges =" orientation|screenSize"
43
43
android : label =" @string/title_activity_template_editor"
44
44
android : theme =" @style/AppTheme.NoActionBar" ></activity >
45
-
46
- <meta-data
47
- android : name =" io.fabric.ApiKey"
48
- android : value =" c1d33469d628f14f5b248cb6d6dcf6de726ef5e3" />
49
-
50
45
<activity
51
46
android : name =" .activity.FirstRunActivity"
52
47
android : label =" @string/app_name"
95
90
<category android : name =" android.intent.category.NOTIFICATION_PREFERENCES" />
96
91
</intent-filter >
97
92
</activity >
93
+
94
+ <meta-data
95
+ android : name =" io.fabric.ApiKey"
96
+ android : value =" 1132ca7df3eff20168030d5099ebd5b81bbfa805" />
98
97
</application >
99
98
100
99
</manifest >
Original file line number Diff line number Diff line change 18
18
19
19
import io .fabric .sdk .android .Fabric ;
20
20
21
+
21
22
/**
22
23
* @brief Shown on application first launch.
23
24
*/
@@ -34,9 +35,8 @@ public class FirstRunActivity extends AppCompatActivity {
34
35
@ Override
35
36
protected void onCreate (Bundle savedInstanceState ) {
36
37
super .onCreate (savedInstanceState );
37
- Fabric .with (this , new Crashlytics ());
38
38
prefs = PreferenceManager .getDefaultSharedPreferences (getApplicationContext ());
39
-
39
+ Fabric . with ( this , new Crashlytics ());
40
40
if (prefs .getBoolean (FIRST_RUN , false )) {
41
41
startActivity (new Intent (getApplicationContext (), HomeActivity .class ));
42
42
finish ();
You can’t perform that action at this time.
0 commit comments