├── .gitignore ├── .gitlab-ci.yml ├── .travis.yml ├── ApiDemos ├── .gitignore ├── build.gradle ├── gradle.properties ├── proguard-rules.txt └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── github │ │ └── snowdream │ │ └── android │ │ └── apidemos │ │ └── HelloWorldLibTest.java │ └── main │ ├── AndroidManifest.xml │ ├── ic_launcher-web.png │ ├── java │ └── com │ │ └── github │ │ └── snowdream │ │ └── android │ │ └── apidemos │ │ ├── MainActivity.java │ │ ├── SoFragment.java │ │ ├── SoLoaderUtil.java │ │ ├── TestFragment.java │ │ └── ToastFragment.java │ ├── jniLibs │ └── armeabi-v7a │ │ └── libhello-jni.so │ └── res │ ├── drawable-hdpi │ └── ic_launcher.png │ ├── drawable-mdpi │ └── ic_launcher.png │ ├── drawable-xhdpi │ └── ic_launcher.png │ ├── drawable-xxhdpi │ └── ic_launcher.png │ ├── layout-land │ └── toast_text_image.xml │ ├── layout │ ├── activity_main.xml │ ├── fragment_main.xml │ ├── test_fragment.xml │ ├── toast_fragment.xml │ ├── toast_image.xml │ └── toast_text_image.xml │ ├── menu │ └── main.xml │ ├── values-w820dp │ └── dimens.xml │ └── values │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml ├── Donate.md ├── LICENSE ├── README.md ├── donate ├── alipay.jpg └── weixinpay.jpg ├── gradle.properties ├── gradle ├── proguard │ ├── proguard-android-all.txt │ ├── proguard-android-app-optimize.txt │ ├── proguard-android-app.txt │ ├── proguard-android-lib-optimize.txt │ ├── proguard-android-lib.txt │ ├── proguard-android-optimize.txt │ ├── proguard-android.txt │ └── proguard-project.txt ├── scripts │ ├── android-library.gradle │ ├── android.gradle │ ├── bintray-push.gradle │ ├── maven-push.gradle │ └── sign.gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── modules ├── app │ ├── .gitignore │ ├── README.md │ ├── build.gradle │ ├── gradle.properties │ ├── proguard-rules.txt │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ └── res │ │ ├── drawable-hdpi │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ │ └── values │ │ └── strings.xml ├── core │ ├── README.md │ ├── build.gradle │ ├── gradle.properties │ ├── libs │ │ └── annotations.jar │ ├── proguard-rules.txt │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── github │ │ │ └── snowdream │ │ │ └── android │ │ │ └── util │ │ │ ├── RootUtilTest.java │ │ │ └── ThreadUtilTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── github │ │ │ │ └── snowdream │ │ │ │ └── android │ │ │ │ ├── content │ │ │ │ └── SharedPreferences.java │ │ │ │ ├── core │ │ │ │ ├── Option.java │ │ │ │ ├── Snowdream.java │ │ │ │ ├── SoLoader.java │ │ │ │ └── task │ │ │ │ │ ├── Cancelable.java │ │ │ │ │ ├── Task.java │ │ │ │ │ ├── TaskExecutorManager.java │ │ │ │ │ ├── TaskListener.java │ │ │ │ │ └── TaskManager.java │ │ │ │ ├── os │ │ │ │ ├── CountDownTimer.java │ │ │ │ ├── Handler.java │ │ │ │ └── IoOnMainThreadException.java │ │ │ │ ├── support │ │ │ │ └── v4 │ │ │ │ │ └── app │ │ │ │ │ ├── Application.java │ │ │ │ │ ├── Fragment.java │ │ │ │ │ ├── FragmentActivity.java │ │ │ │ │ └── Page.java │ │ │ │ ├── util │ │ │ │ ├── DeviceIdUtil.java │ │ │ │ └── TimingLogger.java │ │ │ │ └── widget │ │ │ │ ├── PriorityView.java │ │ │ │ ├── PriorityViewManager.java │ │ │ │ ├── StrokedTextView.java │ │ │ │ └── Toast.java │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xxhdpi │ │ │ └── ic_launcher.png │ │ │ └── values │ │ │ ├── attrs.xml │ │ │ └── strings.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── github │ │ └── snowdream │ │ └── android │ │ └── widget │ │ └── ToastTest.java ├── crypto │ ├── .gitignore │ ├── build.gradle │ ├── gradle.properties │ ├── libs │ │ └── commons-codecs-1.10.jar │ ├── proguard-rules.txt │ └── src │ │ ├── androidTest │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── com │ │ │ └── github │ │ │ └── snowdream │ │ │ └── android │ │ │ └── crypto │ │ │ └── CryptoTest.java │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── github │ │ │ └── snowdream │ │ │ └── android │ │ │ └── crypto │ │ │ └── Crypto.java │ │ └── res │ │ ├── drawable-hdpi │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ │ └── values │ │ └── strings.xml ├── database │ ├── .gitignore │ ├── README.md │ ├── build.gradle │ ├── gradle.properties │ ├── proguard-rules.txt │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ └── res │ │ ├── drawable-hdpi │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ │ └── values │ │ └── strings.xml ├── file │ ├── .gitignore │ ├── build.gradle │ ├── gradle.properties │ ├── proguard-rules.txt │ └── src │ │ ├── androidTest │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── com │ │ │ └── github │ │ │ └── snowdream │ │ │ └── android │ │ │ └── file │ │ │ └── fsTest.java │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── github │ │ │ └── snowdream │ │ │ └── android │ │ │ └── file │ │ │ └── Fs.java │ │ └── res │ │ ├── drawable-hdpi │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ │ └── values │ │ └── strings.xml ├── http │ ├── .gitignore │ ├── README.md │ ├── build.gradle │ ├── gradle.properties │ ├── proguard-rules.txt │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── github │ │ │ └── snowdream │ │ │ └── android │ │ │ └── http │ │ │ └── HelloWorldLib.java │ │ └── res │ │ ├── drawable-hdpi │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ │ └── values │ │ └── strings.xml ├── image │ ├── .gitignore │ ├── build.gradle │ ├── gradle.properties │ ├── proguard-rules.txt │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── github │ │ │ └── snowdream │ │ │ └── android │ │ │ └── image │ │ │ └── HelloWorldLib.java │ │ └── res │ │ ├── drawable-hdpi │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ │ └── values │ │ └── strings.xml ├── log │ ├── README.md │ ├── build.gradle │ ├── gradle.properties │ ├── proguard-rules.txt │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── github │ │ │ └── snowdream │ │ │ └── android │ │ │ └── util │ │ │ └── LogTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── com │ │ │ └── github │ │ │ └── snowdream │ │ │ └── android │ │ │ └── util │ │ │ └── log │ │ │ ├── FilePathGenerator.java │ │ │ ├── Log.java │ │ │ ├── Log2File.java │ │ │ ├── LogFilter.java │ │ │ └── LogFormatter.java │ │ └── test │ │ └── java │ │ └── com │ │ └── github │ │ └── snowdream │ │ └── android │ │ └── util │ │ └── LogTest.java ├── main │ ├── build.gradle │ ├── gradle.properties │ ├── proguard-rules.txt │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── github │ │ │ └── snowdream │ │ │ └── android │ │ │ └── HelloWorldLib.java │ │ └── res │ │ ├── drawable-hdpi │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ │ └── values │ │ └── strings.xml ├── resource │ ├── README.md │ ├── build.gradle │ ├── gradle.properties │ ├── proguard-rules.txt │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ └── res │ │ ├── drawable-hdpi │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ │ └── values │ │ └── strings.xml ├── util │ ├── README.md │ ├── build.gradle │ ├── gradle.properties │ ├── proguard-rules.txt │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── github │ │ │ └── snowdream │ │ │ └── android │ │ │ └── util │ │ │ ├── RootUtilTest.java │ │ │ └── ThreadUtilTest.java │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── github │ │ │ └── snowdream │ │ │ └── android │ │ │ └── util │ │ │ ├── ActivityUtil.java │ │ │ ├── BuildConfigUtil.java │ │ │ ├── DensityUtil.java │ │ │ ├── DualSimInfo.java │ │ │ ├── FileUtil.java │ │ │ ├── LauncherUtil.java │ │ │ ├── ObjectUtil.java │ │ │ ├── RootUtil.java │ │ │ ├── SDCardUtil.java │ │ │ ├── ShellUtil.java │ │ │ ├── ShortcutUtil.java │ │ │ ├── SimUtil.java │ │ │ └── ThreadUtil.java │ │ └── res │ │ ├── drawable-hdpi │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ │ └── values │ │ └── strings.xml └── widgets │ ├── .gitignore │ ├── README.md │ ├── build.gradle │ ├── gradle.properties │ ├── proguard-rules.txt │ └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── github │ │ └── snowdream │ │ └── android │ │ └── widget │ │ └── HelloWorldLib.java │ └── res │ ├── drawable-hdpi │ └── ic_launcher.png │ ├── drawable-mdpi │ └── ic_launcher.png │ ├── drawable-xhdpi │ └── ic_launcher.png │ ├── drawable-xxhdpi │ └── ic_launcher.png │ └── values │ └── strings.xml ├── settings.gradle └── snowdream.keystore.enc /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/.travis.yml -------------------------------------------------------------------------------- /ApiDemos/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /ApiDemos/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/ApiDemos/build.gradle -------------------------------------------------------------------------------- /ApiDemos/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/ApiDemos/gradle.properties -------------------------------------------------------------------------------- /ApiDemos/proguard-rules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/ApiDemos/proguard-rules.txt -------------------------------------------------------------------------------- /ApiDemos/src/androidTest/java/com/github/snowdream/android/apidemos/HelloWorldLibTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/ApiDemos/src/androidTest/java/com/github/snowdream/android/apidemos/HelloWorldLibTest.java -------------------------------------------------------------------------------- /ApiDemos/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/ApiDemos/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /ApiDemos/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/ApiDemos/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /ApiDemos/src/main/java/com/github/snowdream/android/apidemos/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/ApiDemos/src/main/java/com/github/snowdream/android/apidemos/MainActivity.java -------------------------------------------------------------------------------- /ApiDemos/src/main/java/com/github/snowdream/android/apidemos/SoFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/ApiDemos/src/main/java/com/github/snowdream/android/apidemos/SoFragment.java -------------------------------------------------------------------------------- /ApiDemos/src/main/java/com/github/snowdream/android/apidemos/SoLoaderUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/ApiDemos/src/main/java/com/github/snowdream/android/apidemos/SoLoaderUtil.java -------------------------------------------------------------------------------- /ApiDemos/src/main/java/com/github/snowdream/android/apidemos/TestFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/ApiDemos/src/main/java/com/github/snowdream/android/apidemos/TestFragment.java -------------------------------------------------------------------------------- /ApiDemos/src/main/java/com/github/snowdream/android/apidemos/ToastFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/ApiDemos/src/main/java/com/github/snowdream/android/apidemos/ToastFragment.java -------------------------------------------------------------------------------- /ApiDemos/src/main/jniLibs/armeabi-v7a/libhello-jni.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/ApiDemos/src/main/jniLibs/armeabi-v7a/libhello-jni.so -------------------------------------------------------------------------------- /ApiDemos/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/ApiDemos/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /ApiDemos/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/ApiDemos/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /ApiDemos/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/ApiDemos/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ApiDemos/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/ApiDemos/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ApiDemos/src/main/res/layout-land/toast_text_image.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/ApiDemos/src/main/res/layout-land/toast_text_image.xml -------------------------------------------------------------------------------- /ApiDemos/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/ApiDemos/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /ApiDemos/src/main/res/layout/fragment_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/ApiDemos/src/main/res/layout/fragment_main.xml -------------------------------------------------------------------------------- /ApiDemos/src/main/res/layout/test_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/ApiDemos/src/main/res/layout/test_fragment.xml -------------------------------------------------------------------------------- /ApiDemos/src/main/res/layout/toast_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/ApiDemos/src/main/res/layout/toast_fragment.xml -------------------------------------------------------------------------------- /ApiDemos/src/main/res/layout/toast_image.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/ApiDemos/src/main/res/layout/toast_image.xml -------------------------------------------------------------------------------- /ApiDemos/src/main/res/layout/toast_text_image.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/ApiDemos/src/main/res/layout/toast_text_image.xml -------------------------------------------------------------------------------- /ApiDemos/src/main/res/menu/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/ApiDemos/src/main/res/menu/main.xml -------------------------------------------------------------------------------- /ApiDemos/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/ApiDemos/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /ApiDemos/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/ApiDemos/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /ApiDemos/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/ApiDemos/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /ApiDemos/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/ApiDemos/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Donate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/Donate.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/README.md -------------------------------------------------------------------------------- /donate/alipay.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/donate/alipay.jpg -------------------------------------------------------------------------------- /donate/weixinpay.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/donate/weixinpay.jpg -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/proguard/proguard-android-all.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/gradle/proguard/proguard-android-all.txt -------------------------------------------------------------------------------- /gradle/proguard/proguard-android-app-optimize.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/gradle/proguard/proguard-android-app-optimize.txt -------------------------------------------------------------------------------- /gradle/proguard/proguard-android-app.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/gradle/proguard/proguard-android-app.txt -------------------------------------------------------------------------------- /gradle/proguard/proguard-android-lib-optimize.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/gradle/proguard/proguard-android-lib-optimize.txt -------------------------------------------------------------------------------- /gradle/proguard/proguard-android-lib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/gradle/proguard/proguard-android-lib.txt -------------------------------------------------------------------------------- /gradle/proguard/proguard-android-optimize.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/gradle/proguard/proguard-android-optimize.txt -------------------------------------------------------------------------------- /gradle/proguard/proguard-android.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/gradle/proguard/proguard-android.txt -------------------------------------------------------------------------------- /gradle/proguard/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/gradle/proguard/proguard-project.txt -------------------------------------------------------------------------------- /gradle/scripts/android-library.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/gradle/scripts/android-library.gradle -------------------------------------------------------------------------------- /gradle/scripts/android.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/gradle/scripts/android.gradle -------------------------------------------------------------------------------- /gradle/scripts/bintray-push.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/gradle/scripts/bintray-push.gradle -------------------------------------------------------------------------------- /gradle/scripts/maven-push.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/gradle/scripts/maven-push.gradle -------------------------------------------------------------------------------- /gradle/scripts/sign.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/gradle/scripts/sign.gradle -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/gradlew.bat -------------------------------------------------------------------------------- /modules/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /modules/app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/app/README.md -------------------------------------------------------------------------------- /modules/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/app/build.gradle -------------------------------------------------------------------------------- /modules/app/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/app/gradle.properties -------------------------------------------------------------------------------- /modules/app/proguard-rules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/app/proguard-rules.txt -------------------------------------------------------------------------------- /modules/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /modules/app/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/app/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /modules/app/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/app/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /modules/app/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/app/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /modules/app/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/app/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /modules/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /modules/core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/core/README.md -------------------------------------------------------------------------------- /modules/core/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/core/build.gradle -------------------------------------------------------------------------------- /modules/core/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/core/gradle.properties -------------------------------------------------------------------------------- /modules/core/libs/annotations.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/core/libs/annotations.jar -------------------------------------------------------------------------------- /modules/core/proguard-rules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/core/proguard-rules.txt -------------------------------------------------------------------------------- /modules/core/src/androidTest/java/com/github/snowdream/android/util/RootUtilTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/core/src/androidTest/java/com/github/snowdream/android/util/RootUtilTest.java -------------------------------------------------------------------------------- /modules/core/src/androidTest/java/com/github/snowdream/android/util/ThreadUtilTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/core/src/androidTest/java/com/github/snowdream/android/util/ThreadUtilTest.java -------------------------------------------------------------------------------- /modules/core/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/core/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /modules/core/src/main/java/com/github/snowdream/android/content/SharedPreferences.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/core/src/main/java/com/github/snowdream/android/content/SharedPreferences.java -------------------------------------------------------------------------------- /modules/core/src/main/java/com/github/snowdream/android/core/Option.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/core/src/main/java/com/github/snowdream/android/core/Option.java -------------------------------------------------------------------------------- /modules/core/src/main/java/com/github/snowdream/android/core/Snowdream.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/core/src/main/java/com/github/snowdream/android/core/Snowdream.java -------------------------------------------------------------------------------- /modules/core/src/main/java/com/github/snowdream/android/core/SoLoader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/core/src/main/java/com/github/snowdream/android/core/SoLoader.java -------------------------------------------------------------------------------- /modules/core/src/main/java/com/github/snowdream/android/core/task/Cancelable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/core/src/main/java/com/github/snowdream/android/core/task/Cancelable.java -------------------------------------------------------------------------------- /modules/core/src/main/java/com/github/snowdream/android/core/task/Task.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/core/src/main/java/com/github/snowdream/android/core/task/Task.java -------------------------------------------------------------------------------- /modules/core/src/main/java/com/github/snowdream/android/core/task/TaskExecutorManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/core/src/main/java/com/github/snowdream/android/core/task/TaskExecutorManager.java -------------------------------------------------------------------------------- /modules/core/src/main/java/com/github/snowdream/android/core/task/TaskListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/core/src/main/java/com/github/snowdream/android/core/task/TaskListener.java -------------------------------------------------------------------------------- /modules/core/src/main/java/com/github/snowdream/android/core/task/TaskManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/core/src/main/java/com/github/snowdream/android/core/task/TaskManager.java -------------------------------------------------------------------------------- /modules/core/src/main/java/com/github/snowdream/android/os/CountDownTimer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/core/src/main/java/com/github/snowdream/android/os/CountDownTimer.java -------------------------------------------------------------------------------- /modules/core/src/main/java/com/github/snowdream/android/os/Handler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/core/src/main/java/com/github/snowdream/android/os/Handler.java -------------------------------------------------------------------------------- /modules/core/src/main/java/com/github/snowdream/android/os/IoOnMainThreadException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/core/src/main/java/com/github/snowdream/android/os/IoOnMainThreadException.java -------------------------------------------------------------------------------- /modules/core/src/main/java/com/github/snowdream/android/support/v4/app/Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/core/src/main/java/com/github/snowdream/android/support/v4/app/Application.java -------------------------------------------------------------------------------- /modules/core/src/main/java/com/github/snowdream/android/support/v4/app/Fragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/core/src/main/java/com/github/snowdream/android/support/v4/app/Fragment.java -------------------------------------------------------------------------------- /modules/core/src/main/java/com/github/snowdream/android/support/v4/app/FragmentActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/core/src/main/java/com/github/snowdream/android/support/v4/app/FragmentActivity.java -------------------------------------------------------------------------------- /modules/core/src/main/java/com/github/snowdream/android/support/v4/app/Page.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/core/src/main/java/com/github/snowdream/android/support/v4/app/Page.java -------------------------------------------------------------------------------- /modules/core/src/main/java/com/github/snowdream/android/util/DeviceIdUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/core/src/main/java/com/github/snowdream/android/util/DeviceIdUtil.java -------------------------------------------------------------------------------- /modules/core/src/main/java/com/github/snowdream/android/util/TimingLogger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/core/src/main/java/com/github/snowdream/android/util/TimingLogger.java -------------------------------------------------------------------------------- /modules/core/src/main/java/com/github/snowdream/android/widget/PriorityView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/core/src/main/java/com/github/snowdream/android/widget/PriorityView.java -------------------------------------------------------------------------------- /modules/core/src/main/java/com/github/snowdream/android/widget/PriorityViewManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/core/src/main/java/com/github/snowdream/android/widget/PriorityViewManager.java -------------------------------------------------------------------------------- /modules/core/src/main/java/com/github/snowdream/android/widget/StrokedTextView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/core/src/main/java/com/github/snowdream/android/widget/StrokedTextView.java -------------------------------------------------------------------------------- /modules/core/src/main/java/com/github/snowdream/android/widget/Toast.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/core/src/main/java/com/github/snowdream/android/widget/Toast.java -------------------------------------------------------------------------------- /modules/core/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/core/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /modules/core/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/core/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /modules/core/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/core/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /modules/core/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/core/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /modules/core/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/core/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /modules/core/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/core/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /modules/core/src/test/java/com/github/snowdream/android/widget/ToastTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/core/src/test/java/com/github/snowdream/android/widget/ToastTest.java -------------------------------------------------------------------------------- /modules/crypto/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /modules/crypto/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/crypto/build.gradle -------------------------------------------------------------------------------- /modules/crypto/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/crypto/gradle.properties -------------------------------------------------------------------------------- /modules/crypto/libs/commons-codecs-1.10.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/crypto/libs/commons-codecs-1.10.jar -------------------------------------------------------------------------------- /modules/crypto/proguard-rules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/crypto/proguard-rules.txt -------------------------------------------------------------------------------- /modules/crypto/src/androidTest/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/crypto/src/androidTest/AndroidManifest.xml -------------------------------------------------------------------------------- /modules/crypto/src/androidTest/java/com/github/snowdream/android/crypto/CryptoTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/crypto/src/androidTest/java/com/github/snowdream/android/crypto/CryptoTest.java -------------------------------------------------------------------------------- /modules/crypto/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/crypto/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /modules/crypto/src/main/java/com/github/snowdream/android/crypto/Crypto.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/crypto/src/main/java/com/github/snowdream/android/crypto/Crypto.java -------------------------------------------------------------------------------- /modules/crypto/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/crypto/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /modules/crypto/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/crypto/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /modules/crypto/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/crypto/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /modules/crypto/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/crypto/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /modules/crypto/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/crypto/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /modules/database/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /modules/database/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/database/README.md -------------------------------------------------------------------------------- /modules/database/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/database/build.gradle -------------------------------------------------------------------------------- /modules/database/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/database/gradle.properties -------------------------------------------------------------------------------- /modules/database/proguard-rules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/database/proguard-rules.txt -------------------------------------------------------------------------------- /modules/database/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/database/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /modules/database/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/database/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /modules/database/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/database/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /modules/database/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/database/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /modules/database/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/database/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /modules/database/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/database/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /modules/file/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /modules/file/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/file/build.gradle -------------------------------------------------------------------------------- /modules/file/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/file/gradle.properties -------------------------------------------------------------------------------- /modules/file/proguard-rules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/file/proguard-rules.txt -------------------------------------------------------------------------------- /modules/file/src/androidTest/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/file/src/androidTest/AndroidManifest.xml -------------------------------------------------------------------------------- /modules/file/src/androidTest/java/com/github/snowdream/android/file/fsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/file/src/androidTest/java/com/github/snowdream/android/file/fsTest.java -------------------------------------------------------------------------------- /modules/file/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/file/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /modules/file/src/main/java/com/github/snowdream/android/file/Fs.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/file/src/main/java/com/github/snowdream/android/file/Fs.java -------------------------------------------------------------------------------- /modules/file/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/file/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /modules/file/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/file/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /modules/file/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/file/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /modules/file/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/file/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /modules/file/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/file/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /modules/http/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /modules/http/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/http/README.md -------------------------------------------------------------------------------- /modules/http/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/http/build.gradle -------------------------------------------------------------------------------- /modules/http/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/http/gradle.properties -------------------------------------------------------------------------------- /modules/http/proguard-rules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/http/proguard-rules.txt -------------------------------------------------------------------------------- /modules/http/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/http/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /modules/http/src/main/java/com/github/snowdream/android/http/HelloWorldLib.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/http/src/main/java/com/github/snowdream/android/http/HelloWorldLib.java -------------------------------------------------------------------------------- /modules/http/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/http/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /modules/http/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/http/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /modules/http/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/http/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /modules/http/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/http/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /modules/http/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/http/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /modules/image/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /modules/image/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/image/build.gradle -------------------------------------------------------------------------------- /modules/image/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/image/gradle.properties -------------------------------------------------------------------------------- /modules/image/proguard-rules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/image/proguard-rules.txt -------------------------------------------------------------------------------- /modules/image/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/image/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /modules/image/src/main/java/com/github/snowdream/android/image/HelloWorldLib.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/image/src/main/java/com/github/snowdream/android/image/HelloWorldLib.java -------------------------------------------------------------------------------- /modules/image/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/image/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /modules/image/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/image/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /modules/image/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/image/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /modules/image/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/image/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /modules/image/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/image/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /modules/log/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/log/README.md -------------------------------------------------------------------------------- /modules/log/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/log/build.gradle -------------------------------------------------------------------------------- /modules/log/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/log/gradle.properties -------------------------------------------------------------------------------- /modules/log/proguard-rules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/log/proguard-rules.txt -------------------------------------------------------------------------------- /modules/log/src/androidTest/java/com/github/snowdream/android/util/LogTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/log/src/androidTest/java/com/github/snowdream/android/util/LogTest.java -------------------------------------------------------------------------------- /modules/log/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/log/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /modules/log/src/main/java/com/github/snowdream/android/util/log/FilePathGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/log/src/main/java/com/github/snowdream/android/util/log/FilePathGenerator.java -------------------------------------------------------------------------------- /modules/log/src/main/java/com/github/snowdream/android/util/log/Log.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/log/src/main/java/com/github/snowdream/android/util/log/Log.java -------------------------------------------------------------------------------- /modules/log/src/main/java/com/github/snowdream/android/util/log/Log2File.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/log/src/main/java/com/github/snowdream/android/util/log/Log2File.java -------------------------------------------------------------------------------- /modules/log/src/main/java/com/github/snowdream/android/util/log/LogFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/log/src/main/java/com/github/snowdream/android/util/log/LogFilter.java -------------------------------------------------------------------------------- /modules/log/src/main/java/com/github/snowdream/android/util/log/LogFormatter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/log/src/main/java/com/github/snowdream/android/util/log/LogFormatter.java -------------------------------------------------------------------------------- /modules/log/src/test/java/com/github/snowdream/android/util/LogTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/log/src/test/java/com/github/snowdream/android/util/LogTest.java -------------------------------------------------------------------------------- /modules/main/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/main/build.gradle -------------------------------------------------------------------------------- /modules/main/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/main/gradle.properties -------------------------------------------------------------------------------- /modules/main/proguard-rules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/main/proguard-rules.txt -------------------------------------------------------------------------------- /modules/main/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/main/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /modules/main/src/main/java/com/github/snowdream/android/HelloWorldLib.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/main/src/main/java/com/github/snowdream/android/HelloWorldLib.java -------------------------------------------------------------------------------- /modules/main/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/main/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /modules/main/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/main/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /modules/main/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/main/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /modules/main/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/main/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /modules/main/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/main/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /modules/resource/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/resource/README.md -------------------------------------------------------------------------------- /modules/resource/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/resource/build.gradle -------------------------------------------------------------------------------- /modules/resource/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/resource/gradle.properties -------------------------------------------------------------------------------- /modules/resource/proguard-rules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/resource/proguard-rules.txt -------------------------------------------------------------------------------- /modules/resource/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/resource/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /modules/resource/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/resource/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /modules/resource/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/resource/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /modules/resource/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/resource/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /modules/resource/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/resource/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /modules/resource/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/resource/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /modules/util/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/util/README.md -------------------------------------------------------------------------------- /modules/util/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/util/build.gradle -------------------------------------------------------------------------------- /modules/util/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/util/gradle.properties -------------------------------------------------------------------------------- /modules/util/proguard-rules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/util/proguard-rules.txt -------------------------------------------------------------------------------- /modules/util/src/androidTest/java/com/github/snowdream/android/util/RootUtilTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/util/src/androidTest/java/com/github/snowdream/android/util/RootUtilTest.java -------------------------------------------------------------------------------- /modules/util/src/androidTest/java/com/github/snowdream/android/util/ThreadUtilTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/util/src/androidTest/java/com/github/snowdream/android/util/ThreadUtilTest.java -------------------------------------------------------------------------------- /modules/util/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/util/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /modules/util/src/main/java/com/github/snowdream/android/util/ActivityUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/util/src/main/java/com/github/snowdream/android/util/ActivityUtil.java -------------------------------------------------------------------------------- /modules/util/src/main/java/com/github/snowdream/android/util/BuildConfigUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/util/src/main/java/com/github/snowdream/android/util/BuildConfigUtil.java -------------------------------------------------------------------------------- /modules/util/src/main/java/com/github/snowdream/android/util/DensityUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/util/src/main/java/com/github/snowdream/android/util/DensityUtil.java -------------------------------------------------------------------------------- /modules/util/src/main/java/com/github/snowdream/android/util/DualSimInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/util/src/main/java/com/github/snowdream/android/util/DualSimInfo.java -------------------------------------------------------------------------------- /modules/util/src/main/java/com/github/snowdream/android/util/FileUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/util/src/main/java/com/github/snowdream/android/util/FileUtil.java -------------------------------------------------------------------------------- /modules/util/src/main/java/com/github/snowdream/android/util/LauncherUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/util/src/main/java/com/github/snowdream/android/util/LauncherUtil.java -------------------------------------------------------------------------------- /modules/util/src/main/java/com/github/snowdream/android/util/ObjectUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/util/src/main/java/com/github/snowdream/android/util/ObjectUtil.java -------------------------------------------------------------------------------- /modules/util/src/main/java/com/github/snowdream/android/util/RootUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/util/src/main/java/com/github/snowdream/android/util/RootUtil.java -------------------------------------------------------------------------------- /modules/util/src/main/java/com/github/snowdream/android/util/SDCardUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/util/src/main/java/com/github/snowdream/android/util/SDCardUtil.java -------------------------------------------------------------------------------- /modules/util/src/main/java/com/github/snowdream/android/util/ShellUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/util/src/main/java/com/github/snowdream/android/util/ShellUtil.java -------------------------------------------------------------------------------- /modules/util/src/main/java/com/github/snowdream/android/util/ShortcutUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/util/src/main/java/com/github/snowdream/android/util/ShortcutUtil.java -------------------------------------------------------------------------------- /modules/util/src/main/java/com/github/snowdream/android/util/SimUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/util/src/main/java/com/github/snowdream/android/util/SimUtil.java -------------------------------------------------------------------------------- /modules/util/src/main/java/com/github/snowdream/android/util/ThreadUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/util/src/main/java/com/github/snowdream/android/util/ThreadUtil.java -------------------------------------------------------------------------------- /modules/util/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/util/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /modules/util/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/util/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /modules/util/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/util/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /modules/util/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/util/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /modules/util/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/util/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /modules/widgets/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /modules/widgets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/widgets/README.md -------------------------------------------------------------------------------- /modules/widgets/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/widgets/build.gradle -------------------------------------------------------------------------------- /modules/widgets/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/widgets/gradle.properties -------------------------------------------------------------------------------- /modules/widgets/proguard-rules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/widgets/proguard-rules.txt -------------------------------------------------------------------------------- /modules/widgets/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/widgets/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /modules/widgets/src/main/java/com/github/snowdream/android/widget/HelloWorldLib.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/widgets/src/main/java/com/github/snowdream/android/widget/HelloWorldLib.java -------------------------------------------------------------------------------- /modules/widgets/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/widgets/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /modules/widgets/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/widgets/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /modules/widgets/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/widgets/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /modules/widgets/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/widgets/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /modules/widgets/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/modules/widgets/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/settings.gradle -------------------------------------------------------------------------------- /snowdream.keystore.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowdream/SnowdreamFramework/HEAD/snowdream.keystore.enc --------------------------------------------------------------------------------