Skip to content

Commit

Permalink
Update build files
Browse files Browse the repository at this point in the history
  • Loading branch information
tehcneko committed Mar 11, 2024
1 parent 150963c commit 9e1bdea
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 26 deletions.
28 changes: 3 additions & 25 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,29 +1,7 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.3.0'

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}

allprojects {
repositories {
google()
mavenCentral()
mavenLocal {
content {
includeGroup("io.github.libxposed")
}
}
}
plugins {
id 'com.android.application' version '8.3.0' apply false
}

task clean(type: Delete) {
tasks.register('clean', Delete) {
delete rootProject.buildDir
}
21 changes: 20 additions & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
@@ -1,2 +1,21 @@
rootProject.name = "Disable FLAG_SECURE"
pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
mavenLocal {
content {
includeGroup("io.github.libxposed")
}
}
}
}
rootProject.name = "DisableFlagSecure"
include ':app'

0 comments on commit 9e1bdea

Please sign in to comment.