├── .gitignore ├── README.md ├── README_zh.md ├── app-joint-logo.png ├── app ├── .gitignore ├── build.gradle ├── demo.jks ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── io │ │ └── github │ │ └── prototypez │ │ └── appjoint │ │ └── app │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── io │ │ │ └── github │ │ │ └── prototypez │ │ │ └── appjoint │ │ │ └── app │ │ │ ├── App.kt │ │ │ ├── AppServiceImpl.java │ │ │ ├── AppServiceImpl2.java │ │ │ ├── LegacyActivity.kt │ │ │ └── LegacyFragment.kt │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ ├── activity_legacy.xml │ │ └── fragment_legacy.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── io │ └── github │ └── prototypez │ └── appjoint │ └── app │ └── ExampleUnitTest.java ├── commons ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── io │ │ └── github │ │ └── prototypez │ │ └── appjoint │ │ └── commons │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── io │ │ │ └── github │ │ │ └── prototypez │ │ │ └── appjoint │ │ │ └── commons │ │ │ ├── AppBase.java │ │ │ └── T.java │ └── res │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── io │ └── github │ └── prototypez │ └── appjoint │ └── commons │ └── ExampleUnitTest.java ├── core ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── io │ │ └── github │ │ └── prototypez │ │ └── appjoint │ │ ├── AppJoint.java │ │ ├── core │ │ ├── AppSpec.java │ │ ├── ModuleSpec.java │ │ └── ServiceProvider.java │ │ └── util │ │ └── BinaryKeyMap.java │ └── res │ └── values │ └── strings.xml ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── module1 ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── io │ │ └── github │ │ └── prototypez │ │ └── appjoint │ │ └── module1 │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── io │ │ │ └── github │ │ │ └── prototypez │ │ │ └── appjoint │ │ │ └── module1 │ │ │ ├── AnotherApp.java │ │ │ ├── MainActivity.kt │ │ │ ├── Module1Activity.kt │ │ │ ├── Module1Application.kt │ │ │ ├── Module1Fragment.kt │ │ │ ├── Module1ServiceImpl.kt │ │ │ ├── Module1TabFragment.kt │ │ │ └── Services.java │ └── res │ │ ├── layout │ │ ├── activity_main.xml │ │ ├── activity_module1.xml │ │ ├── fragment_module1.xml │ │ └── fragment_module1_tab.xml │ │ └── values │ │ └── strings.xml │ └── test │ └── java │ └── io │ └── github │ └── prototypez │ └── appjoint │ └── module1 │ └── ExampleUnitTest.java ├── module2 ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── io │ │ └── github │ │ └── prototypez │ │ └── appjoint │ │ └── module2 │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── io │ │ │ └── github │ │ │ └── prototypez │ │ │ └── appjoint │ │ │ └── module2 │ │ │ ├── Module2Activity.kt │ │ │ ├── Module2Application.java │ │ │ ├── Module2Fragment.kt │ │ │ ├── Module2ServiceImpl.kt │ │ │ ├── Module2TabFragment.kt │ │ │ └── Services.java │ └── res │ │ ├── layout │ │ ├── activity_module2.xml │ │ ├── fragment_module2.xml │ │ └── fragment_module2_tab.xml │ │ └── values │ │ └── strings.xml │ └── test │ └── java │ └── io │ └── github │ └── prototypez │ └── appjoint │ └── module2 │ └── ExampleUnitTest.java ├── plugin ├── build.gradle └── src │ └── main │ ├── groovy │ └── io │ │ └── github │ │ └── prototypez │ │ └── appjoint │ │ └── plugin │ │ ├── AppJointPlugin.groovy │ │ ├── AppJointTransform.groovy │ │ └── util │ │ ├── Compressor.groovy │ │ └── Decompression.groovy │ └── resources │ └── META-INF │ └── gradle-plugins │ └── app-joint.properties ├── router ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── io │ │ └── github │ │ └── prototypez │ │ └── service │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── io │ │ │ └── github │ │ │ └── prototypez │ │ │ └── service │ │ │ ├── app │ │ │ ├── AppService.java │ │ │ ├── callback │ │ │ │ └── AppCallback.java │ │ │ └── entity │ │ │ │ └── AppEntity.java │ │ │ ├── module1 │ │ │ ├── Module1Service.kt │ │ │ ├── callback │ │ │ │ └── Module1Callback.java │ │ │ └── entity │ │ │ │ └── Module1Entity.java │ │ │ └── module2 │ │ │ ├── Module2Service.java │ │ │ ├── callback │ │ │ └── Module2Callback.java │ │ │ └── entity │ │ │ └── Module2Entity.java │ └── res │ │ └── values │ │ └── strings.xml │ └── test │ └── java │ └── io │ └── github │ └── prototypez │ └── service │ └── ExampleUnitTest.java ├── settings.gradle └── standalone ├── module1Standalone ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── io │ │ └── github │ │ └── prototypez │ │ └── appjoint │ │ └── module1 │ │ └── standalone │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── io │ │ │ └── github │ │ │ └── prototypez │ │ │ └── appjoint │ │ │ └── module1 │ │ │ └── standalone │ │ │ ├── Module1MainActivity.kt │ │ │ ├── Module1StandaloneApplication.java │ │ │ └── mock │ │ │ ├── AppServiceMock.kt │ │ │ └── Module2ServiceMock.kt │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ └── activity_module1_main.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── io │ └── github │ └── prototypez │ └── appjoint │ └── module1 │ └── standalone │ └── ExampleUnitTest.java └── module2Standalone ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src ├── androidTest └── java │ └── io │ └── github │ └── prototypez │ └── module2 │ └── standalone │ └── ExampleInstrumentedTest.java ├── main ├── AndroidManifest.xml ├── java │ └── io │ │ └── github │ │ └── prototypez │ │ └── appjoint │ │ └── module2 │ │ └── standalone │ │ ├── Module2MainActivity.kt │ │ ├── Module2StandaloneApplication.kt │ │ └── mock │ │ ├── AppServiceMock.kt │ │ └── Module1ServiceMock.kt └── res │ ├── drawable-v24 │ └── ic_launcher_foreground.xml │ ├── drawable │ └── ic_launcher_background.xml │ ├── layout │ └── activity_module2_main.xml │ ├── mipmap-anydpi-v26 │ ├── ic_launcher.xml │ └── ic_launcher_round.xml │ ├── mipmap-hdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-mdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xxhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xxxhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ └── values │ ├── colors.xml │ ├── strings.xml │ └── styles.xml └── test └── java └── io └── github └── prototypez └── module2 └── standalone └── ExampleUnitTest.java /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/README.md -------------------------------------------------------------------------------- /README_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/README_zh.md -------------------------------------------------------------------------------- /app-joint-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/app-joint-logo.png -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/demo.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/app/demo.jks -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/io/github/prototypez/appjoint/app/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/app/src/androidTest/java/io/github/prototypez/appjoint/app/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/io/github/prototypez/appjoint/app/App.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/app/src/main/java/io/github/prototypez/appjoint/app/App.kt -------------------------------------------------------------------------------- /app/src/main/java/io/github/prototypez/appjoint/app/AppServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/app/src/main/java/io/github/prototypez/appjoint/app/AppServiceImpl.java -------------------------------------------------------------------------------- /app/src/main/java/io/github/prototypez/appjoint/app/AppServiceImpl2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/app/src/main/java/io/github/prototypez/appjoint/app/AppServiceImpl2.java -------------------------------------------------------------------------------- /app/src/main/java/io/github/prototypez/appjoint/app/LegacyActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/app/src/main/java/io/github/prototypez/appjoint/app/LegacyActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/io/github/prototypez/appjoint/app/LegacyFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/app/src/main/java/io/github/prototypez/appjoint/app/LegacyFragment.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_legacy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/app/src/main/res/layout/activity_legacy.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_legacy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/app/src/main/res/layout/fragment_legacy.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/io/github/prototypez/appjoint/app/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/app/src/test/java/io/github/prototypez/appjoint/app/ExampleUnitTest.java -------------------------------------------------------------------------------- /commons/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /commons/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/commons/build.gradle -------------------------------------------------------------------------------- /commons/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/commons/proguard-rules.pro -------------------------------------------------------------------------------- /commons/src/androidTest/java/io/github/prototypez/appjoint/commons/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/commons/src/androidTest/java/io/github/prototypez/appjoint/commons/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /commons/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | -------------------------------------------------------------------------------- /commons/src/main/java/io/github/prototypez/appjoint/commons/AppBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/commons/src/main/java/io/github/prototypez/appjoint/commons/AppBase.java -------------------------------------------------------------------------------- /commons/src/main/java/io/github/prototypez/appjoint/commons/T.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/commons/src/main/java/io/github/prototypez/appjoint/commons/T.java -------------------------------------------------------------------------------- /commons/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/commons/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /commons/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/commons/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /commons/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/commons/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /commons/src/test/java/io/github/prototypez/appjoint/commons/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/commons/src/test/java/io/github/prototypez/appjoint/commons/ExampleUnitTest.java -------------------------------------------------------------------------------- /core/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /core/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/core/build.gradle -------------------------------------------------------------------------------- /core/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/core/proguard-rules.pro -------------------------------------------------------------------------------- /core/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/core/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /core/src/main/java/io/github/prototypez/appjoint/AppJoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/core/src/main/java/io/github/prototypez/appjoint/AppJoint.java -------------------------------------------------------------------------------- /core/src/main/java/io/github/prototypez/appjoint/core/AppSpec.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/core/src/main/java/io/github/prototypez/appjoint/core/AppSpec.java -------------------------------------------------------------------------------- /core/src/main/java/io/github/prototypez/appjoint/core/ModuleSpec.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/core/src/main/java/io/github/prototypez/appjoint/core/ModuleSpec.java -------------------------------------------------------------------------------- /core/src/main/java/io/github/prototypez/appjoint/core/ServiceProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/core/src/main/java/io/github/prototypez/appjoint/core/ServiceProvider.java -------------------------------------------------------------------------------- /core/src/main/java/io/github/prototypez/appjoint/util/BinaryKeyMap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/core/src/main/java/io/github/prototypez/appjoint/util/BinaryKeyMap.java -------------------------------------------------------------------------------- /core/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/core/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/gradlew.bat -------------------------------------------------------------------------------- /module1/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /module1/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/module1/build.gradle -------------------------------------------------------------------------------- /module1/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/module1/proguard-rules.pro -------------------------------------------------------------------------------- /module1/src/androidTest/java/io/github/prototypez/appjoint/module1/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/module1/src/androidTest/java/io/github/prototypez/appjoint/module1/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /module1/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/module1/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /module1/src/main/java/io/github/prototypez/appjoint/module1/AnotherApp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/module1/src/main/java/io/github/prototypez/appjoint/module1/AnotherApp.java -------------------------------------------------------------------------------- /module1/src/main/java/io/github/prototypez/appjoint/module1/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/module1/src/main/java/io/github/prototypez/appjoint/module1/MainActivity.kt -------------------------------------------------------------------------------- /module1/src/main/java/io/github/prototypez/appjoint/module1/Module1Activity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/module1/src/main/java/io/github/prototypez/appjoint/module1/Module1Activity.kt -------------------------------------------------------------------------------- /module1/src/main/java/io/github/prototypez/appjoint/module1/Module1Application.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/module1/src/main/java/io/github/prototypez/appjoint/module1/Module1Application.kt -------------------------------------------------------------------------------- /module1/src/main/java/io/github/prototypez/appjoint/module1/Module1Fragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/module1/src/main/java/io/github/prototypez/appjoint/module1/Module1Fragment.kt -------------------------------------------------------------------------------- /module1/src/main/java/io/github/prototypez/appjoint/module1/Module1ServiceImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/module1/src/main/java/io/github/prototypez/appjoint/module1/Module1ServiceImpl.kt -------------------------------------------------------------------------------- /module1/src/main/java/io/github/prototypez/appjoint/module1/Module1TabFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/module1/src/main/java/io/github/prototypez/appjoint/module1/Module1TabFragment.kt -------------------------------------------------------------------------------- /module1/src/main/java/io/github/prototypez/appjoint/module1/Services.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/module1/src/main/java/io/github/prototypez/appjoint/module1/Services.java -------------------------------------------------------------------------------- /module1/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/module1/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /module1/src/main/res/layout/activity_module1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/module1/src/main/res/layout/activity_module1.xml -------------------------------------------------------------------------------- /module1/src/main/res/layout/fragment_module1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/module1/src/main/res/layout/fragment_module1.xml -------------------------------------------------------------------------------- /module1/src/main/res/layout/fragment_module1_tab.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/module1/src/main/res/layout/fragment_module1_tab.xml -------------------------------------------------------------------------------- /module1/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/module1/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /module1/src/test/java/io/github/prototypez/appjoint/module1/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/module1/src/test/java/io/github/prototypez/appjoint/module1/ExampleUnitTest.java -------------------------------------------------------------------------------- /module2/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /module2/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/module2/build.gradle -------------------------------------------------------------------------------- /module2/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/module2/proguard-rules.pro -------------------------------------------------------------------------------- /module2/src/androidTest/java/io/github/prototypez/appjoint/module2/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/module2/src/androidTest/java/io/github/prototypez/appjoint/module2/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /module2/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/module2/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /module2/src/main/java/io/github/prototypez/appjoint/module2/Module2Activity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/module2/src/main/java/io/github/prototypez/appjoint/module2/Module2Activity.kt -------------------------------------------------------------------------------- /module2/src/main/java/io/github/prototypez/appjoint/module2/Module2Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/module2/src/main/java/io/github/prototypez/appjoint/module2/Module2Application.java -------------------------------------------------------------------------------- /module2/src/main/java/io/github/prototypez/appjoint/module2/Module2Fragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/module2/src/main/java/io/github/prototypez/appjoint/module2/Module2Fragment.kt -------------------------------------------------------------------------------- /module2/src/main/java/io/github/prototypez/appjoint/module2/Module2ServiceImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/module2/src/main/java/io/github/prototypez/appjoint/module2/Module2ServiceImpl.kt -------------------------------------------------------------------------------- /module2/src/main/java/io/github/prototypez/appjoint/module2/Module2TabFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/module2/src/main/java/io/github/prototypez/appjoint/module2/Module2TabFragment.kt -------------------------------------------------------------------------------- /module2/src/main/java/io/github/prototypez/appjoint/module2/Services.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/module2/src/main/java/io/github/prototypez/appjoint/module2/Services.java -------------------------------------------------------------------------------- /module2/src/main/res/layout/activity_module2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/module2/src/main/res/layout/activity_module2.xml -------------------------------------------------------------------------------- /module2/src/main/res/layout/fragment_module2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/module2/src/main/res/layout/fragment_module2.xml -------------------------------------------------------------------------------- /module2/src/main/res/layout/fragment_module2_tab.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/module2/src/main/res/layout/fragment_module2_tab.xml -------------------------------------------------------------------------------- /module2/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/module2/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /module2/src/test/java/io/github/prototypez/appjoint/module2/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/module2/src/test/java/io/github/prototypez/appjoint/module2/ExampleUnitTest.java -------------------------------------------------------------------------------- /plugin/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/plugin/build.gradle -------------------------------------------------------------------------------- /plugin/src/main/groovy/io/github/prototypez/appjoint/plugin/AppJointPlugin.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/plugin/src/main/groovy/io/github/prototypez/appjoint/plugin/AppJointPlugin.groovy -------------------------------------------------------------------------------- /plugin/src/main/groovy/io/github/prototypez/appjoint/plugin/AppJointTransform.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/plugin/src/main/groovy/io/github/prototypez/appjoint/plugin/AppJointTransform.groovy -------------------------------------------------------------------------------- /plugin/src/main/groovy/io/github/prototypez/appjoint/plugin/util/Compressor.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/plugin/src/main/groovy/io/github/prototypez/appjoint/plugin/util/Compressor.groovy -------------------------------------------------------------------------------- /plugin/src/main/groovy/io/github/prototypez/appjoint/plugin/util/Decompression.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/plugin/src/main/groovy/io/github/prototypez/appjoint/plugin/util/Decompression.groovy -------------------------------------------------------------------------------- /plugin/src/main/resources/META-INF/gradle-plugins/app-joint.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/plugin/src/main/resources/META-INF/gradle-plugins/app-joint.properties -------------------------------------------------------------------------------- /router/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /router/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/router/build.gradle -------------------------------------------------------------------------------- /router/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/router/proguard-rules.pro -------------------------------------------------------------------------------- /router/src/androidTest/java/io/github/prototypez/service/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/router/src/androidTest/java/io/github/prototypez/service/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /router/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | -------------------------------------------------------------------------------- /router/src/main/java/io/github/prototypez/service/app/AppService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/router/src/main/java/io/github/prototypez/service/app/AppService.java -------------------------------------------------------------------------------- /router/src/main/java/io/github/prototypez/service/app/callback/AppCallback.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/router/src/main/java/io/github/prototypez/service/app/callback/AppCallback.java -------------------------------------------------------------------------------- /router/src/main/java/io/github/prototypez/service/app/entity/AppEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/router/src/main/java/io/github/prototypez/service/app/entity/AppEntity.java -------------------------------------------------------------------------------- /router/src/main/java/io/github/prototypez/service/module1/Module1Service.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/router/src/main/java/io/github/prototypez/service/module1/Module1Service.kt -------------------------------------------------------------------------------- /router/src/main/java/io/github/prototypez/service/module1/callback/Module1Callback.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/router/src/main/java/io/github/prototypez/service/module1/callback/Module1Callback.java -------------------------------------------------------------------------------- /router/src/main/java/io/github/prototypez/service/module1/entity/Module1Entity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/router/src/main/java/io/github/prototypez/service/module1/entity/Module1Entity.java -------------------------------------------------------------------------------- /router/src/main/java/io/github/prototypez/service/module2/Module2Service.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/router/src/main/java/io/github/prototypez/service/module2/Module2Service.java -------------------------------------------------------------------------------- /router/src/main/java/io/github/prototypez/service/module2/callback/Module2Callback.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/router/src/main/java/io/github/prototypez/service/module2/callback/Module2Callback.java -------------------------------------------------------------------------------- /router/src/main/java/io/github/prototypez/service/module2/entity/Module2Entity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/router/src/main/java/io/github/prototypez/service/module2/entity/Module2Entity.java -------------------------------------------------------------------------------- /router/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/router/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /router/src/test/java/io/github/prototypez/service/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/router/src/test/java/io/github/prototypez/service/ExampleUnitTest.java -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/settings.gradle -------------------------------------------------------------------------------- /standalone/module1Standalone/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /standalone/module1Standalone/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/standalone/module1Standalone/build.gradle -------------------------------------------------------------------------------- /standalone/module1Standalone/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/standalone/module1Standalone/proguard-rules.pro -------------------------------------------------------------------------------- /standalone/module1Standalone/src/androidTest/java/io/github/prototypez/appjoint/module1/standalone/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/standalone/module1Standalone/src/androidTest/java/io/github/prototypez/appjoint/module1/standalone/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /standalone/module1Standalone/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/standalone/module1Standalone/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /standalone/module1Standalone/src/main/java/io/github/prototypez/appjoint/module1/standalone/Module1MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/standalone/module1Standalone/src/main/java/io/github/prototypez/appjoint/module1/standalone/Module1MainActivity.kt -------------------------------------------------------------------------------- /standalone/module1Standalone/src/main/java/io/github/prototypez/appjoint/module1/standalone/Module1StandaloneApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/standalone/module1Standalone/src/main/java/io/github/prototypez/appjoint/module1/standalone/Module1StandaloneApplication.java -------------------------------------------------------------------------------- /standalone/module1Standalone/src/main/java/io/github/prototypez/appjoint/module1/standalone/mock/AppServiceMock.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/standalone/module1Standalone/src/main/java/io/github/prototypez/appjoint/module1/standalone/mock/AppServiceMock.kt -------------------------------------------------------------------------------- /standalone/module1Standalone/src/main/java/io/github/prototypez/appjoint/module1/standalone/mock/Module2ServiceMock.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/standalone/module1Standalone/src/main/java/io/github/prototypez/appjoint/module1/standalone/mock/Module2ServiceMock.kt -------------------------------------------------------------------------------- /standalone/module1Standalone/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/standalone/module1Standalone/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /standalone/module1Standalone/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/standalone/module1Standalone/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /standalone/module1Standalone/src/main/res/layout/activity_module1_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/standalone/module1Standalone/src/main/res/layout/activity_module1_main.xml -------------------------------------------------------------------------------- /standalone/module1Standalone/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/standalone/module1Standalone/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /standalone/module1Standalone/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/standalone/module1Standalone/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /standalone/module1Standalone/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/standalone/module1Standalone/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /standalone/module1Standalone/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/standalone/module1Standalone/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /standalone/module1Standalone/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/standalone/module1Standalone/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /standalone/module1Standalone/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/standalone/module1Standalone/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /standalone/module1Standalone/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/standalone/module1Standalone/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /standalone/module1Standalone/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/standalone/module1Standalone/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /standalone/module1Standalone/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/standalone/module1Standalone/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /standalone/module1Standalone/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/standalone/module1Standalone/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /standalone/module1Standalone/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/standalone/module1Standalone/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /standalone/module1Standalone/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/standalone/module1Standalone/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /standalone/module1Standalone/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/standalone/module1Standalone/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /standalone/module1Standalone/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/standalone/module1Standalone/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /standalone/module1Standalone/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/standalone/module1Standalone/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /standalone/module1Standalone/src/test/java/io/github/prototypez/appjoint/module1/standalone/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/standalone/module1Standalone/src/test/java/io/github/prototypez/appjoint/module1/standalone/ExampleUnitTest.java -------------------------------------------------------------------------------- /standalone/module2Standalone/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /standalone/module2Standalone/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/standalone/module2Standalone/build.gradle -------------------------------------------------------------------------------- /standalone/module2Standalone/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/standalone/module2Standalone/proguard-rules.pro -------------------------------------------------------------------------------- /standalone/module2Standalone/src/androidTest/java/io/github/prototypez/module2/standalone/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/standalone/module2Standalone/src/androidTest/java/io/github/prototypez/module2/standalone/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /standalone/module2Standalone/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/standalone/module2Standalone/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /standalone/module2Standalone/src/main/java/io/github/prototypez/appjoint/module2/standalone/Module2MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/standalone/module2Standalone/src/main/java/io/github/prototypez/appjoint/module2/standalone/Module2MainActivity.kt -------------------------------------------------------------------------------- /standalone/module2Standalone/src/main/java/io/github/prototypez/appjoint/module2/standalone/Module2StandaloneApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/standalone/module2Standalone/src/main/java/io/github/prototypez/appjoint/module2/standalone/Module2StandaloneApplication.kt -------------------------------------------------------------------------------- /standalone/module2Standalone/src/main/java/io/github/prototypez/appjoint/module2/standalone/mock/AppServiceMock.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/standalone/module2Standalone/src/main/java/io/github/prototypez/appjoint/module2/standalone/mock/AppServiceMock.kt -------------------------------------------------------------------------------- /standalone/module2Standalone/src/main/java/io/github/prototypez/appjoint/module2/standalone/mock/Module1ServiceMock.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/standalone/module2Standalone/src/main/java/io/github/prototypez/appjoint/module2/standalone/mock/Module1ServiceMock.kt -------------------------------------------------------------------------------- /standalone/module2Standalone/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/standalone/module2Standalone/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /standalone/module2Standalone/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/standalone/module2Standalone/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /standalone/module2Standalone/src/main/res/layout/activity_module2_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/standalone/module2Standalone/src/main/res/layout/activity_module2_main.xml -------------------------------------------------------------------------------- /standalone/module2Standalone/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/standalone/module2Standalone/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /standalone/module2Standalone/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/standalone/module2Standalone/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /standalone/module2Standalone/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/standalone/module2Standalone/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /standalone/module2Standalone/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/standalone/module2Standalone/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /standalone/module2Standalone/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/standalone/module2Standalone/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /standalone/module2Standalone/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/standalone/module2Standalone/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /standalone/module2Standalone/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/standalone/module2Standalone/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /standalone/module2Standalone/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/standalone/module2Standalone/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /standalone/module2Standalone/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/standalone/module2Standalone/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /standalone/module2Standalone/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/standalone/module2Standalone/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /standalone/module2Standalone/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/standalone/module2Standalone/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /standalone/module2Standalone/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/standalone/module2Standalone/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /standalone/module2Standalone/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/standalone/module2Standalone/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /standalone/module2Standalone/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/standalone/module2Standalone/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /standalone/module2Standalone/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/standalone/module2Standalone/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /standalone/module2Standalone/src/test/java/io/github/prototypez/module2/standalone/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrototypeZ/AppJoint/HEAD/standalone/module2Standalone/src/test/java/io/github/prototypez/module2/standalone/ExampleUnitTest.java --------------------------------------------------------------------------------