├── .gitignore ├── AndroidManifest.xml ├── LICENSE.txt ├── README.md ├── device-2013-02-23-164950.png ├── proguard-project.txt ├── project.properties ├── res ├── drawable-hdpi │ └── ic_launcher.png ├── drawable-mdpi │ └── ic_launcher.png ├── drawable-xhdpi │ └── ic_launcher.png ├── drawable-xxhdpi │ └── ic_launcher.png └── values │ └── strings.xml ├── src └── com │ └── intrications │ └── android │ └── sharebrowser │ └── MainActivity.java └── web_hi_res_512.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intrications/browser-intercept/HEAD/.gitignore -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intrications/browser-intercept/HEAD/AndroidManifest.xml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intrications/browser-intercept/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intrications/browser-intercept/HEAD/README.md -------------------------------------------------------------------------------- /device-2013-02-23-164950.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intrications/browser-intercept/HEAD/device-2013-02-23-164950.png -------------------------------------------------------------------------------- /proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intrications/browser-intercept/HEAD/proguard-project.txt -------------------------------------------------------------------------------- /project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intrications/browser-intercept/HEAD/project.properties -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intrications/browser-intercept/HEAD/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intrications/browser-intercept/HEAD/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intrications/browser-intercept/HEAD/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intrications/browser-intercept/HEAD/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intrications/browser-intercept/HEAD/res/values/strings.xml -------------------------------------------------------------------------------- /src/com/intrications/android/sharebrowser/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intrications/browser-intercept/HEAD/src/com/intrications/android/sharebrowser/MainActivity.java -------------------------------------------------------------------------------- /web_hi_res_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intrications/browser-intercept/HEAD/web_hi_res_512.png --------------------------------------------------------------------------------