-
Notifications
You must be signed in to change notification settings - Fork 109
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade AGP, and dependencies, and update compile SDK to 34.
- Loading branch information
1 parent
fd73132
commit c41bbaf
Showing
16 changed files
with
128 additions
and
124 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,104 +1,102 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
xmlns:tools="http://schemas.android.com/tools" | ||
package="com.dp.logcatapp"> | ||
xmlns:tools="http://schemas.android.com/tools"> | ||
|
||
<!-- adb shell pm grant com.dp.logcatapp android.permission.READ_LOGS --> | ||
<uses-permission android:name="android.permission.READ_LOGS"/> | ||
|
||
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/> | ||
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> | ||
<uses-permission android:name="android.permission.FOREGROUND_SERVICE"/> | ||
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /> | ||
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> | ||
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" /> | ||
<uses-permission android:name="android.permission.FOREGROUND_SERVICE_SPECIAL_USE" /> | ||
<uses-permission android:name="android.permission.READ_LOGS" /> | ||
|
||
<application | ||
android:name=".LogcatApp" | ||
android:allowBackup="true" | ||
android:fullBackupContent="true" | ||
android:icon="@mipmap/ic_launcher" | ||
android:label="@string/app_name" | ||
android:largeHeap="true" | ||
android:supportsRtl="true" | ||
android:theme="@style/LightTheme" | ||
tools:ignore="GoogleAppIndexingWarning"> | ||
android:name=".LogcatApp" | ||
android:allowBackup="true" | ||
android:fullBackupContent="true" | ||
android:icon="@mipmap/ic_launcher" | ||
android:label="@string/app_name" | ||
android:largeHeap="true" | ||
android:supportsRtl="true" | ||
android:theme="@style/LightTheme" | ||
tools:ignore="GoogleAppIndexingWarning"> | ||
<activity | ||
android:exported="true" | ||
android:name=".activities.SplashActivity" | ||
android:theme="@style/SplashScreenTheme"> | ||
android:name=".activities.SplashActivity" | ||
android:exported="true" | ||
android:theme="@style/SplashScreenTheme"> | ||
<intent-filter> | ||
<action android:name="android.intent.action.MAIN"/> | ||
<action android:name="android.intent.action.MAIN" /> | ||
|
||
<category android:name="android.intent.category.LAUNCHER"/> | ||
<category android:name="android.intent.category.LAUNCHER" /> | ||
</intent-filter> | ||
</activity> | ||
<activity | ||
android:name=".activities.MainActivity" | ||
android:launchMode="singleTask"/> | ||
android:name=".activities.MainActivity" | ||
android:launchMode="singleTask" /> | ||
<activity | ||
android:name=".activities.SettingsActivity" | ||
android:launchMode="singleTask" | ||
android:parentActivityName=".activities.MainActivity" | ||
android:windowSoftInputMode="adjustResize"> | ||
android:name=".activities.SettingsActivity" | ||
android:launchMode="singleTask" | ||
android:parentActivityName=".activities.MainActivity" | ||
android:windowSoftInputMode="adjustResize"> | ||
<meta-data | ||
android:name="android.support.PARENT_ACTIVITY" | ||
android:value=".activities.MainActivity"/> | ||
android:name="android.support.PARENT_ACTIVITY" | ||
android:value=".activities.MainActivity" /> | ||
</activity> | ||
|
||
<activity | ||
android:name=".activities.FiltersActivity" | ||
android:launchMode="singleTask" | ||
android:parentActivityName=".activities.MainActivity" | ||
android:windowSoftInputMode="adjustResize"> | ||
android:name=".activities.FiltersActivity" | ||
android:launchMode="singleTask" | ||
android:parentActivityName=".activities.MainActivity" | ||
android:windowSoftInputMode="adjustResize"> | ||
<meta-data | ||
android:name="android.support.PARENT_ACTIVITY" | ||
android:value=".activities.MainActivity"/> | ||
android:name="android.support.PARENT_ACTIVITY" | ||
android:value=".activities.MainActivity" /> | ||
</activity> | ||
|
||
<activity | ||
android:name=".activities.SavedLogsActivity" | ||
android:launchMode="singleTask" | ||
android:parentActivityName=".activities.MainActivity" | ||
android:windowSoftInputMode="adjustResize"> | ||
android:name=".activities.SavedLogsActivity" | ||
android:launchMode="singleTask" | ||
android:parentActivityName=".activities.MainActivity" | ||
android:windowSoftInputMode="adjustResize"> | ||
<meta-data | ||
android:name="android.support.PARENT_ACTIVITY" | ||
android:value=".activities.MainActivity"/> | ||
android:name="android.support.PARENT_ACTIVITY" | ||
android:value=".activities.MainActivity" /> | ||
</activity> | ||
|
||
<activity | ||
android:name=".activities.SavedLogsViewerActivity" | ||
android:launchMode="singleTask" | ||
android:parentActivityName=".activities.SavedLogsActivity" | ||
android:windowSoftInputMode="adjustResize" | ||
android:exported="true"> | ||
<meta-data | ||
android:name="android.support.PARENT_ACTIVITY" | ||
android:value=".activities.SavedLogsActivity"/> | ||
android:name=".activities.SavedLogsViewerActivity" | ||
android:exported="true" | ||
android:launchMode="singleTask" | ||
android:parentActivityName=".activities.SavedLogsActivity" | ||
android:windowSoftInputMode="adjustResize"> | ||
<intent-filter> | ||
<action android:name="android.intent.action.VIEW"/> | ||
<category android:name="android.intent.category.DEFAULT"/> | ||
<action android:name="android.intent.action.VIEW" /> | ||
<category android:name="android.intent.category.DEFAULT" /> | ||
|
||
<data | ||
android:mimeType="text/plain" | ||
android:scheme="file"/> | ||
android:mimeType="text/plain" | ||
android:scheme="file" /> | ||
<data | ||
android:mimeType="text/plain" | ||
android:scheme="content"/> | ||
android:mimeType="text/plain" | ||
android:scheme="content" /> | ||
</intent-filter> | ||
<meta-data | ||
android:name="android.support.PARENT_ACTIVITY" | ||
android:value=".activities.SavedLogsActivity" /> | ||
</activity> | ||
|
||
<service | ||
android:name=".services.LogcatService" | ||
android:exported="false" | ||
android:stopWithTask="false"/> | ||
|
||
<provider | ||
android:name="androidx.core.content.FileProvider" | ||
android:authorities="${applicationId}.${fileProvider}" | ||
android:exported="false" | ||
android:grantUriPermissions="true"> | ||
android:name="androidx.core.content.FileProvider" | ||
android:authorities="${applicationId}.${fileProvider}" | ||
android:exported="false" | ||
android:grantUriPermissions="true"> | ||
<meta-data | ||
android:name="android.support.FILE_PROVIDER_PATHS" | ||
android:resource="@xml/file_provider_paths"/> | ||
android:name="android.support.FILE_PROVIDER_PATHS" | ||
android:resource="@xml/file_provider_paths" /> | ||
</provider> | ||
</application> | ||
|
||
<service | ||
android:name=".services.LogcatService" | ||
android:exported="false" | ||
android:foregroundServiceType="specialUse" | ||
android:stopWithTask="false" /> | ||
</application> | ||
</manifest> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.