├── .DS_Store ├── .gitignore ├── FastIPC ├── .DS_Store ├── .gitignore ├── build.gradle ├── consumer-rules.pro ├── proguard-rules.pro └── src │ ├── .DS_Store │ ├── androidTest │ └── java │ │ └── com │ │ └── lay │ │ └── fastipc │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── aidl │ │ └── com │ │ │ └── lay │ │ │ └── fastipc │ │ │ ├── IFastIPCService.aidl │ │ │ └── model │ │ │ ├── Request.aidl │ │ │ └── Response.aidl │ └── java │ │ └── com │ │ └── lay │ │ └── fastipc │ │ ├── FastIPC.kt │ │ ├── FastIPCInvocationHandler.kt │ │ ├── annatation │ │ └── ServiceId.kt │ │ ├── client │ │ └── FastIPCChannel.kt │ │ ├── model │ │ ├── Parameters.kt │ │ ├── REQUEST_TYPE.kt │ │ ├── Request.kt │ │ └── Response.kt │ │ ├── server │ │ └── FastIPCRegistry.kt │ │ └── service │ │ ├── FastIPCService.kt │ │ ├── FastIPCService01.kt │ │ ├── FastIPCService02.kt │ │ └── FastIPCService03.kt │ └── test │ └── java │ └── com │ └── lay │ └── fastipc │ └── ExampleUnitTest.kt ├── README.md ├── app ├── .DS_Store ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── .DS_Store │ ├── androidTest │ └── java │ │ └── com │ │ └── lay │ │ └── fastipcdemo │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── .DS_Store │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── lay │ │ │ ├── .DS_Store │ │ │ └── fastipcdemo │ │ │ ├── MainActivity.kt │ │ │ ├── UserService.kt │ │ │ └── binder │ │ │ ├── IUserManager.kt │ │ │ ├── User.kt │ │ │ └── UserManager.java │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ └── activity_main.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── values-night │ │ └── themes.xml │ │ ├── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── themes.xml │ │ └── xml │ │ ├── backup_rules.xml │ │ └── data_extraction_rules.xml │ └── test │ └── java │ └── com │ └── lay │ └── fastipcdemo │ └── ExampleUnitTest.kt ├── clinet ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── lay │ │ └── clinet │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── lay │ │ │ ├── clinet │ │ │ └── MainActivity.kt │ │ │ └── fastipcdemo │ │ │ └── binder │ │ │ ├── IUserManager.kt │ │ │ └── User.kt │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ └── activity_main.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── values-night │ │ └── themes.xml │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── themes.xml │ └── test │ └── java │ └── com │ └── lay │ └── clinet │ └── ExampleUnitTest.kt ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── local.properties └── settings.gradle /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/.gitignore -------------------------------------------------------------------------------- /FastIPC/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/FastIPC/.DS_Store -------------------------------------------------------------------------------- /FastIPC/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /FastIPC/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/FastIPC/build.gradle -------------------------------------------------------------------------------- /FastIPC/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FastIPC/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/FastIPC/proguard-rules.pro -------------------------------------------------------------------------------- /FastIPC/src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/FastIPC/src/.DS_Store -------------------------------------------------------------------------------- /FastIPC/src/androidTest/java/com/lay/fastipc/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/FastIPC/src/androidTest/java/com/lay/fastipc/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /FastIPC/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/FastIPC/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /FastIPC/src/main/aidl/com/lay/fastipc/IFastIPCService.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/FastIPC/src/main/aidl/com/lay/fastipc/IFastIPCService.aidl -------------------------------------------------------------------------------- /FastIPC/src/main/aidl/com/lay/fastipc/model/Request.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/FastIPC/src/main/aidl/com/lay/fastipc/model/Request.aidl -------------------------------------------------------------------------------- /FastIPC/src/main/aidl/com/lay/fastipc/model/Response.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/FastIPC/src/main/aidl/com/lay/fastipc/model/Response.aidl -------------------------------------------------------------------------------- /FastIPC/src/main/java/com/lay/fastipc/FastIPC.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/FastIPC/src/main/java/com/lay/fastipc/FastIPC.kt -------------------------------------------------------------------------------- /FastIPC/src/main/java/com/lay/fastipc/FastIPCInvocationHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/FastIPC/src/main/java/com/lay/fastipc/FastIPCInvocationHandler.kt -------------------------------------------------------------------------------- /FastIPC/src/main/java/com/lay/fastipc/annatation/ServiceId.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/FastIPC/src/main/java/com/lay/fastipc/annatation/ServiceId.kt -------------------------------------------------------------------------------- /FastIPC/src/main/java/com/lay/fastipc/client/FastIPCChannel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/FastIPC/src/main/java/com/lay/fastipc/client/FastIPCChannel.kt -------------------------------------------------------------------------------- /FastIPC/src/main/java/com/lay/fastipc/model/Parameters.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/FastIPC/src/main/java/com/lay/fastipc/model/Parameters.kt -------------------------------------------------------------------------------- /FastIPC/src/main/java/com/lay/fastipc/model/REQUEST_TYPE.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/FastIPC/src/main/java/com/lay/fastipc/model/REQUEST_TYPE.kt -------------------------------------------------------------------------------- /FastIPC/src/main/java/com/lay/fastipc/model/Request.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/FastIPC/src/main/java/com/lay/fastipc/model/Request.kt -------------------------------------------------------------------------------- /FastIPC/src/main/java/com/lay/fastipc/model/Response.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/FastIPC/src/main/java/com/lay/fastipc/model/Response.kt -------------------------------------------------------------------------------- /FastIPC/src/main/java/com/lay/fastipc/server/FastIPCRegistry.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/FastIPC/src/main/java/com/lay/fastipc/server/FastIPCRegistry.kt -------------------------------------------------------------------------------- /FastIPC/src/main/java/com/lay/fastipc/service/FastIPCService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/FastIPC/src/main/java/com/lay/fastipc/service/FastIPCService.kt -------------------------------------------------------------------------------- /FastIPC/src/main/java/com/lay/fastipc/service/FastIPCService01.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/FastIPC/src/main/java/com/lay/fastipc/service/FastIPCService01.kt -------------------------------------------------------------------------------- /FastIPC/src/main/java/com/lay/fastipc/service/FastIPCService02.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/FastIPC/src/main/java/com/lay/fastipc/service/FastIPCService02.kt -------------------------------------------------------------------------------- /FastIPC/src/main/java/com/lay/fastipc/service/FastIPCService03.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/FastIPC/src/main/java/com/lay/fastipc/service/FastIPCService03.kt -------------------------------------------------------------------------------- /FastIPC/src/test/java/com/lay/fastipc/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/FastIPC/src/test/java/com/lay/fastipc/ExampleUnitTest.kt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/README.md -------------------------------------------------------------------------------- /app/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/app/.DS_Store -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/app/src/.DS_Store -------------------------------------------------------------------------------- /app/src/androidTest/java/com/lay/fastipcdemo/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/app/src/androidTest/java/com/lay/fastipcdemo/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /app/src/main/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/app/src/main/.DS_Store -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/lay/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/app/src/main/java/com/lay/.DS_Store -------------------------------------------------------------------------------- /app/src/main/java/com/lay/fastipcdemo/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/app/src/main/java/com/lay/fastipcdemo/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/lay/fastipcdemo/UserService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/app/src/main/java/com/lay/fastipcdemo/UserService.kt -------------------------------------------------------------------------------- /app/src/main/java/com/lay/fastipcdemo/binder/IUserManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/app/src/main/java/com/lay/fastipcdemo/binder/IUserManager.kt -------------------------------------------------------------------------------- /app/src/main/java/com/lay/fastipcdemo/binder/User.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/app/src/main/java/com/lay/fastipcdemo/binder/User.kt -------------------------------------------------------------------------------- /app/src/main/java/com/lay/fastipcdemo/binder/UserManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/app/src/main/java/com/lay/fastipcdemo/binder/UserManager.java -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/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/layz4android/fastipcdemo/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /app/src/test/java/com/lay/fastipcdemo/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/app/src/test/java/com/lay/fastipcdemo/ExampleUnitTest.kt -------------------------------------------------------------------------------- /clinet/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /clinet/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/clinet/build.gradle -------------------------------------------------------------------------------- /clinet/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/clinet/proguard-rules.pro -------------------------------------------------------------------------------- /clinet/src/androidTest/java/com/lay/clinet/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/clinet/src/androidTest/java/com/lay/clinet/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /clinet/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/clinet/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /clinet/src/main/java/com/lay/clinet/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/clinet/src/main/java/com/lay/clinet/MainActivity.kt -------------------------------------------------------------------------------- /clinet/src/main/java/com/lay/fastipcdemo/binder/IUserManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/clinet/src/main/java/com/lay/fastipcdemo/binder/IUserManager.kt -------------------------------------------------------------------------------- /clinet/src/main/java/com/lay/fastipcdemo/binder/User.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/clinet/src/main/java/com/lay/fastipcdemo/binder/User.kt -------------------------------------------------------------------------------- /clinet/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/clinet/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /clinet/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/clinet/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /clinet/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/clinet/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /clinet/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/clinet/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /clinet/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/clinet/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /clinet/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/clinet/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /clinet/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/clinet/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /clinet/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/clinet/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /clinet/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/clinet/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /clinet/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/clinet/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /clinet/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/clinet/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /clinet/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/clinet/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /clinet/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/clinet/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /clinet/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/clinet/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /clinet/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/clinet/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /clinet/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/clinet/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /clinet/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/clinet/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /clinet/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/clinet/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /clinet/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/clinet/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /clinet/src/test/java/com/lay/clinet/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/clinet/src/test/java/com/lay/clinet/ExampleUnitTest.kt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/gradlew.bat -------------------------------------------------------------------------------- /local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/local.properties -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layz4android/fastipcdemo/HEAD/settings.gradle --------------------------------------------------------------------------------