Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
M
Magisk
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
Magisk
Commits
cba26eed
Commit
cba26eed
authored
Mar 30, 2020
by
topjohnwu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move several stuffs out of shared
parent
23e74b27
Show whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
23 additions
and
34 deletions
+23
-34
AndroidManifest.xml
app/src/main/AndroidManifest.xml
+5
-1
stubs.kt
app/src/main/java/a/stubs.kt
+3
-0
ic_splash_activity.xml
app/src/main/res/drawable-anydpi-v23/ic_splash_activity.xml
+0
-0
ic_launcher.xml
app/src/main/res/drawable-anydpi-v26/ic_launcher.xml
+0
-0
ic_magisk_padded.xml
app/src/main/res/drawable/ic_magisk_padded.xml
+0
-0
colors.xml
app/src/main/res/values/colors.xml
+3
-0
styles_md2.xml
app/src/main/res/values/styles_md2.xml
+11
-2
AndroidManifest.xml
shared/src/main/AndroidManifest.xml
+1
-5
r.java
shared/src/main/java/a/r.java
+0
-6
colors.xml
shared/src/main/res/values/colors.xml
+0
-6
styles.xml
shared/src/main/res/values/styles.xml
+0
-14
No files found.
app/src/main/AndroidManifest.xml
View file @
cba26eed
...
@@ -35,7 +35,6 @@
...
@@ -35,7 +35,6 @@
android:directBootAware=
"true"
android:directBootAware=
"true"
android:excludeFromRecents=
"true"
android:excludeFromRecents=
"true"
android:exported=
"false"
android:exported=
"false"
android:theme=
"@android:style/Theme.Translucent.NoTitleBar"
tools:ignore=
"AppLinkUrlError"
>
tools:ignore=
"AppLinkUrlError"
>
<intent-filter>
<intent-filter>
<action
android:name=
"android.intent.action.VIEW"
/>
<action
android:name=
"android.intent.action.VIEW"
/>
...
@@ -43,6 +42,11 @@
...
@@ -43,6 +42,11 @@
</intent-filter>
</intent-filter>
</activity>
</activity>
<!-- ProcessPhoenix -->
<activity
android:name=
"a.r"
android:process=
":remote"
/>
<!-- Receiver -->
<!-- Receiver -->
<receiver
<receiver
android:name=
"a.h"
android:name=
"a.h"
...
...
app/src/main/java/a/stubs.kt
View file @
cba26eed
package
a
package
a
import
com.topjohnwu.magisk.ProcessPhoenix
import
com.topjohnwu.magisk.core.App
import
com.topjohnwu.magisk.core.App
import
com.topjohnwu.magisk.core.GeneralReceiver
import
com.topjohnwu.magisk.core.GeneralReceiver
import
com.topjohnwu.magisk.core.SplashActivity
import
com.topjohnwu.magisk.core.SplashActivity
...
@@ -21,3 +22,5 @@ class h : GeneralReceiver()
...
@@ -21,3 +22,5 @@ class h : GeneralReceiver()
class
j
:
DownloadService
()
class
j
:
DownloadService
()
class
m
:
SuRequestActivity
()
class
m
:
SuRequestActivity
()
class
r
:
ProcessPhoenix
()
shared
/src/main/res/drawable-anydpi-v23/ic_splash_activity.xml
→
app
/src/main/res/drawable-anydpi-v23/ic_splash_activity.xml
View file @
cba26eed
File moved
shared
/src/main/res/drawable-anydpi-v26/ic_launcher.xml
→
app
/src/main/res/drawable-anydpi-v26/ic_launcher.xml
View file @
cba26eed
File moved
shared
/src/main/res/drawable/ic_magisk_padded.xml
→
app
/src/main/res/drawable/ic_magisk_padded.xml
View file @
cba26eed
File moved
app/src/main/res/values/colors.xml
View file @
cba26eed
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<resources>
<resources>
<color
name=
"ic_launcher_background"
>
#00AF9C
</color>
<color
name=
"dark"
>
#00796B
</color>
<color
name=
"light"
>
#e0e0e0
</color>
<color
name=
"su_request_background"
>
#e0e0e0
</color>
<color
name=
"su_request_background"
>
#e0e0e0
</color>
<color
name=
"colorOverlay"
>
#0D000000
</color>
<color
name=
"colorOverlay"
>
#0D000000
</color>
</resources>
</resources>
app/src/main/res/values/styles_md2.xml
View file @
cba26eed
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<resources>
<resources
xmlns:tools=
"http://schemas.android.com/tools"
>
<style
name=
"SplashThemeBase"
parent=
"android:Theme.DeviceDefault.NoActionBar"
>
<item
name=
"android:windowBackground"
>
@drawable/ic_splash_activity
</item>
</style>
<style
name=
"SplashThemeBase.V19"
parent=
"SplashThemeBase"
>
<item
name=
"android:windowTranslucentStatus"
tools:targetApi=
"19"
>
true
</item>
<item
name=
"android:windowTranslucentNavigation"
tools:targetApi=
"19"
>
true
</item>
</style>
<style
name=
"SplashTheme"
parent=
"SplashThemeBase"
/>
<style
name=
"SplashTheme"
parent=
"SplashThemeBase"
/>
...
...
shared/src/main/AndroidManifest.xml
View file @
cba26eed
...
@@ -12,12 +12,8 @@
...
@@ -12,12 +12,8 @@
android:installLocation=
"internalOnly"
android:installLocation=
"internalOnly"
android:usesCleartextTraffic=
"true"
android:usesCleartextTraffic=
"true"
android:supportsRtl=
"true"
android:supportsRtl=
"true"
tools:ignore=
"UnusedAttribute"
>
<activity
android:name=
"a.r"
android:theme=
"@android:style/Theme.Translucent.NoTitleBar"
android:theme=
"@android:style/Theme.Translucent.NoTitleBar"
android:process=
":remote"
/
>
tools:ignore=
"UnusedAttribute"
>
<provider
<provider
android:name=
"a.p"
android:name=
"a.p"
...
...
shared/src/main/java/a/r.java
deleted
100644 → 0
View file @
23e74b27
package
a
;
import
com.topjohnwu.magisk.ProcessPhoenix
;
public
class
r
extends
ProcessPhoenix
{
}
shared/src/main/res/values/colors.xml
deleted
100644 → 0
View file @
23e74b27
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color
name=
"ic_launcher_background"
>
#00AF9C
</color>
<color
name=
"dark"
>
#00796B
</color>
<color
name=
"light"
>
#e0e0e0
</color>
</resources>
shared/src/main/res/values/styles.xml
deleted
100644 → 0
View file @
23e74b27
<?xml version="1.0" encoding="utf-8"?>
<resources
xmlns:tools=
"http://schemas.android.com/tools"
>
<style
name=
"SplashThemeBase"
parent=
"android:Theme.DeviceDefault.NoActionBar"
>
<item
name=
"android:windowBackground"
>
@drawable/ic_splash_activity
</item>
</style>
<style
name=
"SplashThemeBase.V19"
parent=
"SplashThemeBase"
>
<item
name=
"android:windowTranslucentStatus"
tools:targetApi=
"19"
>
true
</item>
<item
name=
"android:windowTranslucentNavigation"
tools:targetApi=
"19"
>
true
</item>
</style>
<style
name=
"SplashTheme"
parent=
"android:Theme.Translucent.NoTitleBar"
/>
</resources>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment