├── .gitignore ├── README.md ├── android ├── android.gitignore ├── gradle │ ├── app-build.gradle │ ├── bintray.gradle │ ├── install.gradle │ ├── library-build.gradle │ └── project-build.gradle ├── proguard-rules-app.pro └── proguard-rules-library.pro ├── common ├── APACHE-LICENSE.md ├── CHANGELOG.md ├── PRIVACY-TEMPLATE.md └── README-tempate.md ├── ios ├── Framework.podspec ├── swift.gitignore └── xcode.gitignore └── windows └── visualstudio.gitignore /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quangctkm9207/template-files/HEAD/README.md -------------------------------------------------------------------------------- /android/android.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quangctkm9207/template-files/HEAD/android/android.gitignore -------------------------------------------------------------------------------- /android/gradle/app-build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quangctkm9207/template-files/HEAD/android/gradle/app-build.gradle -------------------------------------------------------------------------------- /android/gradle/bintray.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quangctkm9207/template-files/HEAD/android/gradle/bintray.gradle -------------------------------------------------------------------------------- /android/gradle/install.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quangctkm9207/template-files/HEAD/android/gradle/install.gradle -------------------------------------------------------------------------------- /android/gradle/library-build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quangctkm9207/template-files/HEAD/android/gradle/library-build.gradle -------------------------------------------------------------------------------- /android/gradle/project-build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quangctkm9207/template-files/HEAD/android/gradle/project-build.gradle -------------------------------------------------------------------------------- /android/proguard-rules-app.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quangctkm9207/template-files/HEAD/android/proguard-rules-app.pro -------------------------------------------------------------------------------- /android/proguard-rules-library.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quangctkm9207/template-files/HEAD/android/proguard-rules-library.pro -------------------------------------------------------------------------------- /common/APACHE-LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quangctkm9207/template-files/HEAD/common/APACHE-LICENSE.md -------------------------------------------------------------------------------- /common/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | Change Log 2 | === 3 | 4 | Version 1.0.0 *(yyyy-mm-dd)* 5 | --- 6 | * Initial release -------------------------------------------------------------------------------- /common/PRIVACY-TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quangctkm9207/template-files/HEAD/common/PRIVACY-TEMPLATE.md -------------------------------------------------------------------------------- /common/README-tempate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quangctkm9207/template-files/HEAD/common/README-tempate.md -------------------------------------------------------------------------------- /ios/Framework.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quangctkm9207/template-files/HEAD/ios/Framework.podspec -------------------------------------------------------------------------------- /ios/swift.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quangctkm9207/template-files/HEAD/ios/swift.gitignore -------------------------------------------------------------------------------- /ios/xcode.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quangctkm9207/template-files/HEAD/ios/xcode.gitignore -------------------------------------------------------------------------------- /windows/visualstudio.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quangctkm9207/template-files/HEAD/windows/visualstudio.gitignore --------------------------------------------------------------------------------