-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade breaks with projects (git modules) that have source in root of the module. Fix by creating empty projects and pointing the srcDirs to the existing git modules. Could just move the sources of each modules into a subdir, but I don't want to mess with non-android usage (desktop client, i18n projects, automations, etc)
- Loading branch information
Showing
13 changed files
with
211 additions
and
17 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Submodule BiglyBT-plugin-aercm
updated
from ed40c6 to 000974
Submodule BiglyBT-plugin-azutp
updated
2 files
+0 −57 | android-build.gradle | |
+0 −3 | src/main/AndroidManifest.xml |
Submodule BiglyBT-plugin-xmwebui
updated
2 files
+0 −58 | android-build.gradle | |
+0 −3 | src/main/AndroidManifest.xml |
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,6 +1,6 @@ | ||
#Tue Aug 22 21:17:02 PDT 2023 | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-bin.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
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,3 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<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 |
---|---|---|
@@ -0,0 +1,58 @@ | ||
plugins { | ||
id 'com.android.library' | ||
} | ||
|
||
android { | ||
namespace 'com.aelitis.plugins.rcmplugin' | ||
compileSdk rootProject.ext.compileSdkVersion | ||
|
||
defaultConfig { | ||
minSdkVersion 14 | ||
multiDexEnabled true | ||
} | ||
|
||
|
||
compileOptions { | ||
encoding = "UTF-8" | ||
|
||
sourceCompatibility JavaVersion.VERSION_1_8 | ||
targetCompatibility JavaVersion.VERSION_1_8 | ||
} | ||
|
||
|
||
sourceSets { | ||
main { | ||
manifest.srcFile 'AndroidManifest.xml' | ||
java { | ||
srcDirs = [ | ||
'../../BiglyBT-plugin-aercm' | ||
] | ||
exclude 'com/aelitis/plugins/rcmplugin/RelatedContentUISWT**' | ||
exclude 'com/aelitis/plugins/rcmplugin/SBC_RCMView*' | ||
exclude 'com/aelitis/plugins/rcmplugin/RCM_SubViewHolder*' | ||
exclude 'com/aelitis/plugins/rcmplugin/RCM_SubView*' | ||
exclude 'com/aelitis/plugins/rcmplugin/columns/**' | ||
} | ||
|
||
resources { | ||
includes = [ | ||
'com/aelitis/plugins/rcmplugin/internat/*.properties', | ||
'com/aelitis/plugins/rcmplugin/resources/**' | ||
] | ||
srcDirs = [ | ||
'../../BiglyBT-plugin-aercm' | ||
] | ||
exclude 'plugin.properties' | ||
exclude 'build/**' | ||
exclude 'build' | ||
} | ||
} | ||
} | ||
lint { | ||
abortOnError false | ||
} | ||
} | ||
|
||
dependencies { | ||
implementation project(path: ':core') | ||
} |
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,3 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<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 |
---|---|---|
@@ -0,0 +1,59 @@ | ||
plugins { | ||
id 'com.android.library' | ||
} | ||
|
||
/* | ||
To use this in Android Studio, place something like the following in your root settings.gradle | ||
include ':BiglyBT-plugin-azutp' | ||
project(':BiglyBT-plugin-azutp').buildFileName = 'android-build.gradle' | ||
or, just rename this file to build.gradle | ||
*/ | ||
|
||
android { | ||
namespace 'com.vuze.client.plugins.utp' | ||
compileSdk rootProject.ext.compileSdkVersion | ||
|
||
defaultConfig { | ||
minSdkVersion 14 | ||
multiDexEnabled true | ||
} | ||
|
||
|
||
compileOptions { | ||
encoding = "UTF-8" | ||
|
||
sourceCompatibility JavaVersion.VERSION_1_8 | ||
targetCompatibility JavaVersion.VERSION_1_8 | ||
} | ||
|
||
|
||
sourceSets { | ||
main { | ||
manifest.srcFile 'AndroidManifest.xml' | ||
|
||
java { | ||
srcDirs = [ | ||
'../../BiglyBT-plugin-azutp' | ||
] | ||
} | ||
|
||
resources { | ||
includes = ['**/*.properties'] | ||
srcDirs = [ | ||
'../../BiglyBT-plugin-azutp' | ||
] | ||
exclude 'plugin.properties' | ||
exclude 'plugin_install.properties' | ||
exclude 'build/**' | ||
exclude 'build' | ||
} | ||
} | ||
} | ||
lint { | ||
abortOnError false | ||
} | ||
} | ||
|
||
dependencies { | ||
implementation project(path: ':core') | ||
} |
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,3 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<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 |
---|---|---|
@@ -0,0 +1,60 @@ | ||
plugins { | ||
id 'com.android.library' | ||
} | ||
|
||
/* | ||
To use this in Android Studio, place something like the following in your root settings.gradle | ||
include ':BiglyBT-plugin-xmwebui' | ||
project(':BiglyBT-plugin-xmwebui').buildFileName = 'android-build.gradle' | ||
or, just rename this file to build.gradle | ||
*/ | ||
|
||
android { | ||
namespace 'com.aelitis.azureus.plugins.xmwebui' | ||
compileSdk rootProject.ext.compileSdkVersion | ||
|
||
defaultConfig { | ||
minSdkVersion 14 | ||
multiDexEnabled true | ||
} | ||
|
||
|
||
compileOptions { | ||
encoding = "UTF-8" | ||
|
||
sourceCompatibility JavaVersion.VERSION_1_8 | ||
targetCompatibility JavaVersion.VERSION_1_8 | ||
} | ||
|
||
|
||
sourceSets { | ||
main { | ||
manifest.srcFile 'AndroidManifest.xml' | ||
|
||
java { | ||
srcDirs = [ | ||
'../../BiglyBT-plugin-xmwebui' | ||
] | ||
exclude 'com/aelitis/azureus/plugins/xmwebui/swt/**' | ||
exclude 'com/aelitis/azureus/plugins/xmwebui/console/**' | ||
} | ||
|
||
resources { | ||
includes = ['**/*.properties'] | ||
srcDirs = [ | ||
'../../BiglyBT-plugin-xmwebui' | ||
] | ||
exclude "plugin.properties" | ||
exclude 'build/**' | ||
exclude 'build' | ||
} | ||
} | ||
} | ||
lint { | ||
abortOnError false | ||
} | ||
} | ||
|
||
dependencies { | ||
implementation project(path: ':core') | ||
} |
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,15 +1,23 @@ | ||
include ':recyclerview-fastscroll', ':jiechic-tray', ':Android-DirectoryChooser' | ||
include ':app' | ||
|
||
include ":net.i2p.android-helper" | ||
project(':jiechic-tray').projectDir = new File('jiechic-tray-version/jiechic-tray') | ||
project(':Android-DirectoryChooser').projectDir = new File('Android-DirectoryChooser/library') | ||
include ':recyclerview-fastscroll' | ||
include ':core' | ||
include ':mldht' | ||
include ':BiglyBT-plugin-mlDHT' | ||
include ":BiglyBT-plugin-aercm" | ||
project(':BiglyBT-plugin-aercm').buildFileName = 'android-build.gradle' | ||
include ':BiglyBT-plugin-xmwebui' | ||
project(':BiglyBT-plugin-xmwebui').buildFileName = 'android-build.gradle' | ||
include ':BiglyBT-plugin-azutp' | ||
project(':BiglyBT-plugin-azutp').buildFileName = 'android-build.gradle' | ||
include ':BiglyBT-plugin-mlDHT-Java6' | ||
|
||
include ':jiechic-tray' | ||
project(':jiechic-tray').projectDir = new File('jiechic-tray-version/jiechic-tray') | ||
|
||
include ':Android-DirectoryChooser' | ||
project(':Android-DirectoryChooser').projectDir = new File('Android-DirectoryChooser/library') | ||
|
||
include 'BiglyBT-plugin-aercm' | ||
project(':BiglyBT-plugin-aercm').projectDir = new File(rootDir, 'modules-with-root-src/aercm') | ||
|
||
include ':BiglyBT-plugin-xmwebui' | ||
project(':BiglyBT-plugin-xmwebui').projectDir = new File(rootDir, 'modules-with-root-src/xmwebui') | ||
|
||
include 'BiglyBT-plugin-azutp' | ||
project(':BiglyBT-plugin-azutp').projectDir = new File(rootDir, 'modules-with-root-src/azutp') |