├── .gitignore ├── LICENSE ├── README.md ├── ScreenRecorderforAndroid ├── .gitignore ├── build.gradle └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── de │ │ └── skilloverflow │ │ └── screenrecorderforandroid │ │ └── MainActivity.java │ └── res │ ├── drawable-hdpi │ └── ic_launcher.png │ ├── drawable-mdpi │ └── ic_launcher.png │ ├── drawable-xhdpi │ └── ic_launcher.png │ ├── drawable-xxhdpi │ └── ic_launcher.png │ ├── layout │ ├── activity_main.xml │ └── fragment_main.xml │ ├── menu │ └── main.xml │ ├── values-w820dp │ └── dimens.xml │ └── values │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leandros/ScreenRecorder-for-Android/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leandros/ScreenRecorder-for-Android/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leandros/ScreenRecorder-for-Android/HEAD/README.md -------------------------------------------------------------------------------- /ScreenRecorderforAndroid/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /ScreenRecorderforAndroid/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leandros/ScreenRecorder-for-Android/HEAD/ScreenRecorderforAndroid/build.gradle -------------------------------------------------------------------------------- /ScreenRecorderforAndroid/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leandros/ScreenRecorder-for-Android/HEAD/ScreenRecorderforAndroid/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /ScreenRecorderforAndroid/src/main/java/de/skilloverflow/screenrecorderforandroid/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leandros/ScreenRecorder-for-Android/HEAD/ScreenRecorderforAndroid/src/main/java/de/skilloverflow/screenrecorderforandroid/MainActivity.java -------------------------------------------------------------------------------- /ScreenRecorderforAndroid/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leandros/ScreenRecorder-for-Android/HEAD/ScreenRecorderforAndroid/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /ScreenRecorderforAndroid/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leandros/ScreenRecorder-for-Android/HEAD/ScreenRecorderforAndroid/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /ScreenRecorderforAndroid/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leandros/ScreenRecorder-for-Android/HEAD/ScreenRecorderforAndroid/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ScreenRecorderforAndroid/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leandros/ScreenRecorder-for-Android/HEAD/ScreenRecorderforAndroid/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ScreenRecorderforAndroid/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leandros/ScreenRecorder-for-Android/HEAD/ScreenRecorderforAndroid/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /ScreenRecorderforAndroid/src/main/res/layout/fragment_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leandros/ScreenRecorder-for-Android/HEAD/ScreenRecorderforAndroid/src/main/res/layout/fragment_main.xml -------------------------------------------------------------------------------- /ScreenRecorderforAndroid/src/main/res/menu/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leandros/ScreenRecorder-for-Android/HEAD/ScreenRecorderforAndroid/src/main/res/menu/main.xml -------------------------------------------------------------------------------- /ScreenRecorderforAndroid/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leandros/ScreenRecorder-for-Android/HEAD/ScreenRecorderforAndroid/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /ScreenRecorderforAndroid/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leandros/ScreenRecorder-for-Android/HEAD/ScreenRecorderforAndroid/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /ScreenRecorderforAndroid/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leandros/ScreenRecorder-for-Android/HEAD/ScreenRecorderforAndroid/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /ScreenRecorderforAndroid/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leandros/ScreenRecorder-for-Android/HEAD/ScreenRecorderforAndroid/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leandros/ScreenRecorder-for-Android/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leandros/ScreenRecorder-for-Android/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leandros/ScreenRecorder-for-Android/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leandros/ScreenRecorder-for-Android/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':ScreenRecorderforAndroid' 2 | --------------------------------------------------------------------------------