├── .gitignore ├── LICENSE ├── README.md ├── Sdk └── platforms │ ├── android-28 │ └── android.jar │ └── android-29 │ └── android.jar └── assets ├── module_project_build_gradle.png └── root_project_build_gradle.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteKite/Android-CustomSDK/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteKite/Android-CustomSDK/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteKite/Android-CustomSDK/HEAD/README.md -------------------------------------------------------------------------------- /Sdk/platforms/android-28/android.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteKite/Android-CustomSDK/HEAD/Sdk/platforms/android-28/android.jar -------------------------------------------------------------------------------- /Sdk/platforms/android-29/android.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteKite/Android-CustomSDK/HEAD/Sdk/platforms/android-29/android.jar -------------------------------------------------------------------------------- /assets/module_project_build_gradle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteKite/Android-CustomSDK/HEAD/assets/module_project_build_gradle.png -------------------------------------------------------------------------------- /assets/root_project_build_gradle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiteKite/Android-CustomSDK/HEAD/assets/root_project_build_gradle.png --------------------------------------------------------------------------------