Skip to content

Commit

Permalink
Add app usage statistics
Browse files Browse the repository at this point in the history
  • Loading branch information
MuntashirAkon committed Jun 4, 2020
1 parent 48012d8 commit 9fb6a18
Show file tree
Hide file tree
Showing 14 changed files with 531 additions and 37 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ android {
applicationId 'io.github.muntashirakon.AppManager'
minSdkVersion 21
targetSdkVersion 29
versionCode 85
versionName '2.2.4'
versionCode 87
versionName '2.3.0'
}
buildTypes {
release {
Expand Down
16 changes: 10 additions & 6 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,18 +1,22 @@
<?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="io.github.muntashirakon.AppManager"
xmlns:dist="http://schemas.android.com/apk/distribution">
<dist:module dist:instant="true" />
<uses-permission android:name="android.permission.GET_PACKAGE_SIZE" android:maxSdkVersion="25" />
package="io.github.muntashirakon.AppManager">
<uses-permission android:name="android.permission.GET_PACKAGE_SIZE"
android:maxSdkVersion="25" />
<uses-permission android:name="android.permission.PACKAGE_USAGE_STATS"
tools:ignore="ProtectedPermissions" />
<uses-permission android:name="android.permission.REQUEST_DELETE_PACKAGES" />
<application
android:allowBackup="false"
android:icon="@drawable/ic_launcher_app_manager"
android:label="@string/app_name"
android:largeHeap="true"
android:theme="@style/AppTheme"
tools:replace="android:icon"
android:largeHeap="true">
tools:replace="android:icon">
<activity
android:name=".activities.AppUsageActivity"
android:permission="android.permission.PACKAGE_USAGE_STATS" />
<activity android:name=".activities.ClassViewerActivity" />
<activity android:name=".activities.ClassListingActivity" />
<activity
Expand Down
Loading

0 comments on commit 9fb6a18

Please sign in to comment.