File tree 2 files changed +23
-26
lines changed
2 files changed +23
-26
lines changed Original file line number Diff line number Diff line change 1
- // Top-level build file where you can add configuration options common to all sub-projects/modules.
2
- buildscript {
3
- repositories {
4
- google()
5
- mavenCentral()
6
- }
7
- dependencies {
8
- classpath ' com.android.tools.build:gradle:8.3.0'
9
-
10
- // NOTE: Do not place your application dependencies here; they belong
11
- // in the individual module build.gradle files
12
- }
13
- }
14
-
15
- allprojects {
16
- repositories {
17
- google()
18
- mavenCentral()
19
- mavenLocal {
20
- content {
21
- includeGroup(" io.github.libxposed" )
22
- }
23
- }
24
- }
1
+ plugins {
2
+ id ' com.android.application' version ' 8.3.0' apply false
25
3
}
26
4
27
- task clean ( type : Delete ) {
5
+ tasks . register( ' clean ' , Delete ) {
28
6
delete rootProject. buildDir
29
7
}
Original file line number Diff line number Diff line change 1
- rootProject. name = " Disable FLAG_SECURE"
1
+ pluginManagement {
2
+ repositories {
3
+ gradlePluginPortal()
4
+ google()
5
+ mavenCentral()
6
+ }
7
+ }
8
+ dependencyResolutionManagement {
9
+ repositoriesMode. set(RepositoriesMode . FAIL_ON_PROJECT_REPOS )
10
+ repositories {
11
+ google()
12
+ mavenCentral()
13
+ mavenLocal {
14
+ content {
15
+ includeGroup(" io.github.libxposed" )
16
+ }
17
+ }
18
+ }
19
+ }
20
+ rootProject. name = " DisableFlagSecure"
2
21
include ' :app'
You can’t perform that action at this time.
0 commit comments