Skip to content

Commit 2c9df25

Browse files
Upgrades target and compile SDK to latest and fixes app activities exporting. (#423)
1 parent 3892548 commit 2c9df25

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ apply plugin: 'com.android.application'
33
apply plugin: 'instabug-apm'
44

55
android {
6-
compileSdkVersion 30
6+
compileSdkVersion 32
77

88
defaultConfig {
99
applicationId "com.example.instabug"
1010
minSdkVersion 15
11-
targetSdkVersion 30
11+
targetSdkVersion 32
1212
versionCode 1
1313
versionName "1.0"
1414
multiDexEnabled true

app/src/main/AndroidManifest.xml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,17 @@
2929

3030
<activity
3131
android:name=".ui.activities.MainActivity"
32+
android:exported="true"
3233
android:label="@string/app_name"
3334
android:theme="@style/AppTheme.NoActionBar">
3435
<intent-filter>
3536
<action android:name="android.intent.action.MAIN" />
3637
<category android:name="android.intent.category.LAUNCHER" />
3738
</intent-filter>
3839
</activity>
39-
<activity android:name=".ui.activities.SettingsActivity"
40-
android:theme="@style/AppTheme.NoActionBar"/>
40+
<activity
41+
android:name=".ui.activities.SettingsActivity"
42+
android:theme="@style/AppTheme.NoActionBar" />
4143

4244
<meta-data
4345
android:name="com.google.android.gms.version"
@@ -61,6 +63,6 @@
6163
<action android:name="com.google.android.gms.iid.InstanceID" />
6264
</intent-filter>
6365
</service>
64-
<service android:name="com.example.instabug.fcm.RegistrationIntentService"/>
66+
<service android:name="com.example.instabug.fcm.RegistrationIntentService" />
6567
</application>
6668
</manifest>

0 commit comments

Comments
 (0)