-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
62 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,4 +19,4 @@ | |
</activity> | ||
</application> | ||
|
||
</manifest> | ||
</manifest> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,19 @@ | ||
// Top-level build file where you can add configuration options common to all sub-projects/modules. | ||
plugins { | ||
|
||
buildscript { | ||
|
||
repositories { | ||
google() | ||
jcenter() | ||
} | ||
dependencies { | ||
classpath 'com.android.tools.build:gradle:3.1.2' | ||
|
||
/** | ||
* You should use `apply false` in the top-level build.gradle file | ||
* to add a Gradle plugin as a build dependency, but not apply it to the | ||
* current (root) project. You should not use `apply false` in sub-projects. | ||
* For more information, see | ||
* Applying external plugins with same version to subprojects. | ||
*/ | ||
|
||
// NOTE: Do not place your application dependencies here; they belong | ||
// in the individual module build.gradle files | ||
} | ||
} | ||
|
||
allprojects { | ||
repositories { | ||
google() | ||
jcenter() | ||
maven { url 'https://jitpack.io' } | ||
} | ||
id 'com.android.application' version '7.2.0' apply false | ||
id 'com.android.library' version '7.2.0' apply false | ||
id 'org.jetbrains.kotlin.android' version '1.6.10' apply false | ||
} | ||
|
||
task clean(type: Delete) { | ||
delete rootProject.buildDir | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,41 @@ | ||
pluginManagement { | ||
|
||
/** | ||
* The pluginManagement {repositories {...}} block configures the | ||
* repositories Gradle uses to search or download the Gradle plugins and | ||
* their transitive dependencies. Gradle pre-configures support for remote | ||
* repositories such as JCenter, Maven Central, and Ivy. You can also use | ||
* local repositories or define your own remote repositories. The code below | ||
* defines the Gradle Plugin Portal, Google's Maven repository, | ||
* and the Maven Central Repository as the repositories Gradle should use to look for its dependencies. | ||
*/ | ||
|
||
repositories { | ||
gradlePluginPortal() | ||
google() | ||
mavenCentral() | ||
maven { url 'https://jitpack.io' } | ||
} | ||
} | ||
dependencyResolutionManagement { | ||
|
||
/** | ||
* The dependencyResolutionManagement { repositories {...}} | ||
* block is where you configure the repositories and dependencies used by | ||
* all modules in your project, such as libraries that you are using to | ||
* create your application. However, you should configure module-specific | ||
* dependencies in each module-level build.gradle file. For new projects, | ||
* Android Studio includes Google's Maven repository | ||
* and the Maven Central Repository by | ||
* default, but it does not configure any dependencies (unless you select a | ||
* template that requires some). | ||
*/ | ||
|
||
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) | ||
repositories { | ||
google() | ||
mavenCentral() | ||
maven { url 'https://jitpack.io' } | ||
} | ||
} | ||
include ':app', ':theglowingloader' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters