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
dd8116e2
Commit
dd8116e2
authored
Nov 24, 2021
by
vvb2060
Committed by
John Wu
Dec 14, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update Dependencies
parent
b5d80a88
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
9 additions
and
16 deletions
+9
-16
build.gradle.kts
app/build.gradle.kts
+5
-8
build.gradle.kts
app/shared/build.gradle.kts
+1
-1
build.gradle.kts
buildSrc/build.gradle.kts
+2
-2
gradle.properties
gradle.properties
+0
-3
gradle-wrapper.properties
gradle/wrapper/gradle-wrapper.properties
+1
-2
No files found.
app/build.gradle.kts
View file @
dd8116e2
...
@@ -78,10 +78,7 @@ dependencies {
...
@@ -78,10 +78,7 @@ dependencies {
implementation
(
"com.github.topjohnwu:indeterminate-checkbox:1.0.7"
)
implementation
(
"com.github.topjohnwu:indeterminate-checkbox:1.0.7"
)
implementation
(
"com.github.topjohnwu:lz4-java:1.7.1"
)
implementation
(
"com.github.topjohnwu:lz4-java:1.7.1"
)
implementation
(
"com.jakewharton.timber:timber:4.7.1"
)
implementation
(
"com.jakewharton.timber:timber:4.7.1"
)
implementation
(
"org.bouncycastle:bcpkix-jdk15on:1.70"
)
val
vBC
=
"1.69"
implementation
(
"org.bouncycastle:bcprov-jdk15on:${vBC}"
)
implementation
(
"org.bouncycastle:bcpkix-jdk15on:${vBC}"
)
val
vBAdapt
=
"4.0.0"
val
vBAdapt
=
"4.0.0"
val
bindingAdapter
=
"me.tatarka.bindingcollectionadapter2:bindingcollectionadapter"
val
bindingAdapter
=
"me.tatarka.bindingcollectionadapter2:bindingcollectionadapter"
...
@@ -104,15 +101,15 @@ dependencies {
...
@@ -104,15 +101,15 @@ dependencies {
implementation
(
"com.squareup.retrofit2:converter-moshi:${vRetrofit}"
)
implementation
(
"com.squareup.retrofit2:converter-moshi:${vRetrofit}"
)
implementation
(
"com.squareup.retrofit2:converter-scalars:${vRetrofit}"
)
implementation
(
"com.squareup.retrofit2:converter-scalars:${vRetrofit}"
)
val
vOkHttp
=
"4.9.
2
"
val
vOkHttp
=
"4.9.
3
"
implementation
(
"com.squareup.okhttp3:okhttp:${vOkHttp}"
)
implementation
(
"com.squareup.okhttp3:okhttp:${vOkHttp}"
)
implementation
(
"com.squareup.okhttp3:logging-interceptor:${vOkHttp}"
)
implementation
(
"com.squareup.okhttp3:logging-interceptor:${vOkHttp}"
)
val
vMoshi
=
"1.1
2
.0"
val
vMoshi
=
"1.1
3
.0"
implementation
(
"com.squareup.moshi:moshi:${vMoshi}"
)
implementation
(
"com.squareup.moshi:moshi:${vMoshi}"
)
kapt
(
"com.squareup.moshi:moshi-kotlin-codegen:${vMoshi}"
)
kapt
(
"com.squareup.moshi:moshi-kotlin-codegen:${vMoshi}"
)
val
vRoom
=
"2.
3.0
"
val
vRoom
=
"2.
4.0-rc01
"
implementation
(
"androidx.room:room-runtime:${vRoom}"
)
implementation
(
"androidx.room:room-runtime:${vRoom}"
)
implementation
(
"androidx.room:room-ktx:${vRoom}"
)
implementation
(
"androidx.room:room-ktx:${vRoom}"
)
kapt
(
"androidx.room:room-compiler:${vRoom}"
)
kapt
(
"androidx.room:room-compiler:${vRoom}"
)
...
@@ -124,7 +121,7 @@ dependencies {
...
@@ -124,7 +121,7 @@ dependencies {
implementation
(
"androidx.biometric:biometric:1.1.0"
)
implementation
(
"androidx.biometric:biometric:1.1.0"
)
implementation
(
"androidx.constraintlayout:constraintlayout:2.1.2"
)
implementation
(
"androidx.constraintlayout:constraintlayout:2.1.2"
)
implementation
(
"androidx.swiperefreshlayout:swiperefreshlayout:1.1.0"
)
implementation
(
"androidx.swiperefreshlayout:swiperefreshlayout:1.1.0"
)
implementation
(
"androidx.
browser:browser
:1.4.0"
)
implementation
(
"androidx.
appcompat:appcompat
:1.4.0"
)
implementation
(
"androidx.preference:preference:1.1.1"
)
implementation
(
"androidx.preference:preference:1.1.1"
)
implementation
(
"androidx.recyclerview:recyclerview:1.2.1"
)
implementation
(
"androidx.recyclerview:recyclerview:1.2.1"
)
implementation
(
"androidx.fragment:fragment-ktx:1.4.0"
)
implementation
(
"androidx.fragment:fragment-ktx:1.4.0"
)
...
...
app/shared/build.gradle.kts
View file @
dd8116e2
...
@@ -11,5 +11,5 @@ android {
...
@@ -11,5 +11,5 @@ android {
}
}
dependencies
{
dependencies
{
api
(
"io.michaelrocks:paranoid-core:0.3.
5
"
)
api
(
"io.michaelrocks:paranoid-core:0.3.
7
"
)
}
}
buildSrc/build.gradle.kts
View file @
dd8116e2
...
@@ -16,9 +16,9 @@ gradlePlugin {
...
@@ -16,9 +16,9 @@ gradlePlugin {
}
}
dependencies
{
dependencies
{
implementation
(
kotlin
(
"gradle-plugin"
,
"1.
5.31
"
))
implementation
(
kotlin
(
"gradle-plugin"
,
"1.
6.0
"
))
implementation
(
"com.android.tools.build:gradle:7.0.4"
)
implementation
(
"com.android.tools.build:gradle:7.0.4"
)
implementation
(
"androidx.navigation:navigation-safe-args-gradle-plugin:2.4.0-beta02"
)
implementation
(
"androidx.navigation:navigation-safe-args-gradle-plugin:2.4.0-beta02"
)
implementation
(
"io.michaelrocks:paranoid-gradle-plugin:0.3.
5
"
)
implementation
(
"io.michaelrocks:paranoid-gradle-plugin:0.3.
7
"
)
implementation
(
"org.eclipse.jgit:org.eclipse.jgit:5.12.0.202106070339-r"
)
implementation
(
"org.eclipse.jgit:org.eclipse.jgit:5.12.0.202106070339-r"
)
}
}
gradle.properties
View file @
dd8116e2
...
@@ -22,12 +22,9 @@ org.gradle.caching=true
...
@@ -22,12 +22,9 @@ org.gradle.caching=true
# Android
# Android
android.useAndroidX
=
true
android.useAndroidX
=
true
android.enableJetifier
=
false
android.enableR8.fullMode
=
true
android.enableR8.fullMode
=
true
android.databinding.incremental
=
true
android.databinding.incremental
=
true
android.injected.testOnly
=
false
android.injected.testOnly
=
false
kapt.incremental.apt
=
true
# Magisk
# Magisk
magisk.stubVersion
=
22
magisk.stubVersion
=
22
...
...
gradle/wrapper/gradle-wrapper.properties
View file @
dd8116e2
#Wed Apr 14 22:32:11 PDT 2021
distributionBase
=
GRADLE_USER_HOME
distributionBase
=
GRADLE_USER_HOME
distributionPath
=
wrapper/dists
distributionPath
=
wrapper/dists
distributionUrl
=
https
\:
//services.gradle.org/distributions/gradle-7.3-all.zip
zipStoreBase
=
GRADLE_USER_HOME
zipStoreBase
=
GRADLE_USER_HOME
zipStorePath
=
wrapper/dists
zipStorePath
=
wrapper/dists
distributionUrl
=
https
\:
//services.gradle.org/distributions/gradle-7.2-all.zip
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