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
7871c2f5
Commit
7871c2f5
authored
Jun 19, 2022
by
vvb2060
Committed by
John Wu
Dec 27, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update deps
parent
57d83635
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
30 additions
and
15 deletions
+30
-15
build.gradle.kts
app/build.gradle.kts
+6
-5
AndroidManifest.xml
app/shared/src/main/AndroidManifest.xml
+0
-1
AndroidManifest.xml
app/src/main/AndroidManifest.xml
+11
-2
build.gradle.kts
buildSrc/build.gradle.kts
+2
-2
gradle-wrapper.jar
gradle/wrapper/gradle-wrapper.jar
+0
-0
gradle-wrapper.properties
gradle/wrapper/gradle-wrapper.properties
+2
-1
gradlew
gradlew
+8
-4
gradlew.bat
gradlew.bat
+1
-0
No files found.
app/build.gradle.kts
View file @
7871c2f5
...
...
@@ -44,6 +44,7 @@ android {
packagingOptions
{
resources
{
excludes
+=
"/META-INF/*"
excludes
+=
"/META-INF/versions/**"
excludes
+=
"/org/bouncycastle/**"
excludes
+=
"/kotlin/**"
excludes
+=
"/kotlinx/**"
...
...
@@ -72,9 +73,9 @@ dependencies {
implementation
(
"com.github.topjohnwu:indeterminate-checkbox:1.0.7"
)
implementation
(
"com.github.topjohnwu:lz4-java:1.7.1"
)
implementation
(
"com.jakewharton.timber:timber:5.0.1"
)
implementation
(
"org.bouncycastle:bcpkix-jdk18on:1.7
1
"
)
implementation
(
"org.bouncycastle:bcpkix-jdk18on:1.7
2
"
)
implementation
(
"dev.rikka.rikkax.layoutinflater:layoutinflater:1.2.0"
)
implementation
(
"dev.rikka.rikkax.insets:insets:1.
2
.0"
)
implementation
(
"dev.rikka.rikkax.insets:insets:1.
3
.0"
)
implementation
(
"dev.rikka.rikkax.recyclerview:recyclerview-ktx:1.3.1"
)
implementation
(
"io.noties.markwon:core:4.6.2"
)
...
...
@@ -93,11 +94,11 @@ dependencies {
implementation
(
"com.squareup.okhttp3:logging-interceptor:${vOkHttp}"
)
implementation
(
"com.squareup.okhttp3:okhttp-dnsoverhttps:${vOkHttp}"
)
val
vMoshi
=
"1.1
3
.0"
val
vMoshi
=
"1.1
4
.0"
implementation
(
"com.squareup.moshi:moshi:${vMoshi}"
)
kapt
(
"com.squareup.moshi:moshi-kotlin-codegen:${vMoshi}"
)
val
vRoom
=
"2.5.0-
alpha03
"
val
vRoom
=
"2.5.0-
rc01
"
implementation
(
"androidx.room:room-runtime:${vRoom}"
)
implementation
(
"androidx.room:room-ktx:${vRoom}"
)
kapt
(
"androidx.room:room-compiler:${vRoom}"
)
...
...
@@ -111,7 +112,7 @@ dependencies {
implementation
(
"androidx.swiperefreshlayout:swiperefreshlayout:1.1.0"
)
implementation
(
"androidx.appcompat:appcompat:1.5.1"
)
implementation
(
"androidx.recyclerview:recyclerview:1.2.1"
)
implementation
(
"androidx.fragment:fragment-ktx:1.5.
4
"
)
implementation
(
"androidx.fragment:fragment-ktx:1.5.
5
"
)
implementation
(
"androidx.transition:transition:1.4.1"
)
implementation
(
"androidx.core:core-ktx:1.9.0"
)
implementation
(
"androidx.core:core-splashscreen:1.0.0"
)
...
...
app/shared/src/main/AndroidManifest.xml
View file @
7871c2f5
<manifest
xmlns:android=
"http://schemas.android.com/apk/res/android"
xmlns:tools=
"http://schemas.android.com/tools"
package=
"com.topjohnwu.shared"
android:installLocation=
"internalOnly"
>
<uses-permission
android:name=
"android.permission.INTERNET"
/>
...
...
app/src/main/AndroidManifest.xml
View file @
7871c2f5
...
...
@@ -2,13 +2,22 @@
<manifest
xmlns:android=
"http://schemas.android.com/apk/res/android"
xmlns:tools=
"http://schemas.android.com/tools"
>
<permission
android:name=
"${applicationId}.DYNAMIC_RECEIVER_NOT_EXPORTED_PERMISSION"
android:protectionLevel=
"signature"
tools:node=
"remove"
/>
<uses-permission
android:name=
"${applicationId}.DYNAMIC_RECEIVER_NOT_EXPORTED_PERMISSION"
tools:node=
"remove"
/>
<application
android:name=
".core.App"
android:extractNativeLibs=
"true"
android:icon=
"@drawable/ic_launcher"
android:multiArch=
"true"
tools:
remove=
"android:appComponentFactory
"
tools:
ignore=
"UnusedAttribute,GoogleAppIndexingWarning
"
>
tools:
ignore=
"UnusedAttribute,GoogleAppIndexingWarning
"
tools:
remove=
"android:appComponentFactory
"
>
<activity
android:name=
".ui.MainActivity"
...
...
buildSrc/build.gradle.kts
View file @
7871c2f5
...
...
@@ -24,9 +24,9 @@ tasks.withType<KotlinCompile> {
}
dependencies
{
implementation
(
kotlin
(
"gradle-plugin"
,
"1.7.
10
"
))
implementation
(
kotlin
(
"gradle-plugin"
,
"1.7.
21
"
))
implementation
(
"com.android.tools.build:gradle:7.3.1"
)
implementation
(
"androidx.navigation:navigation-safe-args-gradle-plugin:2.5.3"
)
implementation
(
"io.michaelrocks:paranoid-gradle-plugin:0.3.7"
)
implementation
(
"org.eclipse.jgit:org.eclipse.jgit:6.
2.0.202206071550
-r"
)
implementation
(
"org.eclipse.jgit:org.eclipse.jgit:6.
4.0.202211300538
-r"
)
}
gradle/wrapper/gradle-wrapper.jar
View file @
7871c2f5
This diff was suppressed by a .gitattributes entry.
gradle/wrapper/gradle-wrapper.properties
View file @
7871c2f5
distributionBase
=
GRADLE_USER_HOME
distributionPath
=
wrapper/dists
distributionUrl
=
https
\:
//services.gradle.org/distributions/gradle-7.5.1-all.zip
distributionUrl
=
https
\:
//services.gradle.org/distributions/gradle-7.6-all.zip
networkTimeout
=
10000
zipStoreBase
=
GRADLE_USER_HOME
zipStorePath
=
wrapper/dists
gradlew
View file @
7871c2f5
...
...
@@ -55,7 +55,7 @@
# Darwin, MinGW, and NonStop.
#
# (3) This script is generated from the Groovy template
# https://github.com/gradle/gradle/blob/
master
/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
# https://github.com/gradle/gradle/blob/
HEAD
/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
# within the Gradle project.
#
# You can find Gradle at https://github.com/gradle/gradle/.
...
...
@@ -80,10 +80,10 @@ do
esac
done
APP_HOME
=
$(
cd
"
${
APP_HOME
:-
./
}
"
&&
pwd
-P
)
||
exit
APP_NAME
=
"Gradle"
# This is normally unused
# shellcheck disable=SC2034
APP_BASE_NAME
=
${
0
##*/
}
APP_HOME
=
$(
cd
"
${
APP_HOME
:-
./
}
"
&&
pwd
-P
)
||
exit
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
DEFAULT_JVM_OPTS
=
'"-Xmx64m" "-Xms64m"'
...
...
@@ -143,12 +143,16 @@ fi
if
!
"
$cygwin
"
&&
!
"
$darwin
"
&&
!
"
$nonstop
"
;
then
case
$MAX_FD
in
#(
max
*
)
# In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked.
# shellcheck disable=SC3045
MAX_FD
=
$(
ulimit
-H
-n
)
||
warn
"Could not query maximum file descriptor limit"
esac
case
$MAX_FD
in
#(
''
|
soft
)
:
;;
#(
*
)
# In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked.
# shellcheck disable=SC3045
ulimit
-n
"
$MAX_FD
"
||
warn
"Could not set maximum file descriptor limit to
$MAX_FD
"
esac
...
...
gradlew.bat
View file @
7871c2f5
...
...
@@ -26,6 +26,7 @@ if "%OS%"=="Windows_NT" setlocal
set DIRNAME=%~dp0
if "%DIRNAME%"=="" set DIRNAME=.
@rem This is normally unused
set APP_BASE_NAME=%~n0
set APP_HOME=%DIRNAME%
...
...
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