Skip to content

Commit 4016754

Browse files
committed
Updated UI and code refactor
1 parent a466e90 commit 4016754

36 files changed

+292
-160
lines changed

FridaLoader/.idea/compiler.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

FridaLoader/.idea/deploymentTargetDropDown.xml

Lines changed: 23 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

FridaLoader/.idea/gradle.xml

Lines changed: 2 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

FridaLoader/.idea/migrations.xml

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

FridaLoader/.idea/misc.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

FridaLoader/.idea/runConfigurations.xml

Lines changed: 0 additions & 12 deletions
This file was deleted.

FridaLoader/app/build.gradle

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@ android {
2020
sourceCompatibility = '1.8'
2121
targetCompatibility = '1.8'
2222
}
23+
buildToolsVersion '34.0.0 rc3'
24+
ndkVersion '25.2.9519653'
25+
namespace 'com.dns.fridaloader'
2326
}
2427
repositories {
2528
maven { url 'https://jitpack.io' }
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"version": 3,
3+
"artifactType": {
4+
"type": "APK",
5+
"kind": "Directory"
6+
},
7+
"applicationId": "com.dns.fridaloader",
8+
"variantName": "debug",
9+
"elements": [
10+
{
11+
"type": "SINGLE",
12+
"filters": [],
13+
"attributes": [],
14+
"versionCode": 1,
15+
"versionName": "1.0",
16+
"outputFile": "app-debug.apk"
17+
}
18+
],
19+
"elementType": "File"
20+
}

FridaLoader/app/debug/output.json

Lines changed: 0 additions & 1 deletion
This file was deleted.

FridaLoader/app/src/main/AndroidManifest.xml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3-
package="com.dns.fridaloader">
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
43
<uses-permission android:name="android.permission.INTERNET"></uses-permission>
54
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
65
<uses-permission android:name="android.permission.ACCESS_SUPERUSER"/>
@@ -9,11 +8,11 @@
98
<application
109
android:allowBackup="true"
1110
android:name=".MainApp"
12-
android:icon="@mipmap/ic_launcher"
11+
android:icon="@mipmap/ic_fridaloader"
1312
android:label="@string/app_name"
14-
android:roundIcon="@mipmap/ic_launcher_round"
13+
android:roundIcon="@mipmap/ic_fridaloader"
1514
android:supportsRtl="true"
16-
android:theme="@style/AppTheme"
15+
android:theme="@style/Theme.AppCompat.NoActionBar"
1716
>
1817
<activity android:name=".MainActivity">
1918
<intent-filter>

0 commit comments

Comments
 (0)