├── LICENSE ├── README └── app ├── build.gradle ├── proguard-android-optimize.txt ├── proguard-rules.pro └── src └── main ├── AndroidManifest.xml ├── java └── com │ └── nightshadelabs │ └── anotherbrowser │ └── AnotherBrowserActivity.java └── res ├── mipmap-hdpi └── ic_launcher.png ├── mipmap-mdpi └── ic_launcher.png ├── mipmap-xhdpi └── ic_launcher.png ├── mipmap-xxhdpi └── ic_launcher.png ├── mipmap-xxxhdpi └── ic_launcher.png └── values └── strings.xml /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GodsMoon/Flashify/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GodsMoon/Flashify/HEAD/README -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GodsMoon/Flashify/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-android-optimize.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GodsMoon/Flashify/HEAD/app/proguard-android-optimize.txt -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GodsMoon/Flashify/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GodsMoon/Flashify/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/nightshadelabs/anotherbrowser/AnotherBrowserActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GodsMoon/Flashify/HEAD/app/src/main/java/com/nightshadelabs/anotherbrowser/AnotherBrowserActivity.java -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GodsMoon/Flashify/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GodsMoon/Flashify/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GodsMoon/Flashify/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GodsMoon/Flashify/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GodsMoon/Flashify/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GodsMoon/Flashify/HEAD/app/src/main/res/values/strings.xml --------------------------------------------------------------------------------