forked from LSPosed/LSPosed
-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Avoid using a local version of this apache module Keep xz module to resolve confict
- Loading branch information
1 parent
4666b13
commit d4dcc99
Showing
8 changed files
with
32 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
val androidSourceCompatibility: JavaVersion by rootProject.extra | ||
val androidTargetCompatibility: JavaVersion by rootProject.extra | ||
|
||
plugins { | ||
id("java-library") | ||
} | ||
|
||
java { | ||
sourceCompatibility = androidSourceCompatibility | ||
targetCompatibility = androidTargetCompatibility | ||
sourceSets { | ||
main { | ||
java.srcDirs("commons-lang/src/main/java", "local") | ||
} | ||
} | ||
} |
Submodule commons-lang
added at
c2cd05
File renamed without changes.
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
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