├── .DS_Store ├── .gradle ├── 4.1 │ ├── fileChanges │ │ └── last-build.bin │ ├── fileContent │ │ └── fileContent.lock │ ├── fileHashes │ │ ├── fileHashes.bin │ │ ├── fileHashes.lock │ │ └── resourceHashesCache.bin │ ├── javaCompile │ │ ├── classAnalysis.bin │ │ ├── jarAnalysis.bin │ │ ├── javaCompile.lock │ │ ├── taskHistory.bin │ │ └── taskJars.bin │ └── taskHistory │ │ ├── fileSnapshots.bin │ │ ├── taskHistory.bin │ │ └── taskHistory.lock └── buildOutputCleanup │ ├── built.bin │ ├── cache.properties │ └── cache.properties.lock ├── .idea ├── gradle.xml ├── libraries │ ├── android_arch_core_common_1_0_0_jar.xml │ ├── android_arch_lifecycle_common_1_0_3_jar.xml │ ├── android_arch_lifecycle_runtime_1_0_3.xml │ ├── com_android_support_animated_vector_drawable_27_0_2.xml │ ├── com_android_support_appcompat_v7_27_0_2.xml │ ├── com_android_support_constraint_constraint_layout_1_0_2.xml │ ├── com_android_support_constraint_constraint_layout_solver_1_0_2_jar.xml │ ├── com_android_support_exifinterface_27_0_2.xml │ ├── com_android_support_support_annotations_27_0_2_jar.xml │ ├── com_android_support_support_compat_27_0_2.xml │ ├── com_android_support_support_core_ui_27_0_2.xml │ ├── com_android_support_support_core_utils_27_0_2.xml │ ├── com_android_support_support_fragment_27_0_2.xml │ ├── com_android_support_support_vector_drawable_27_0_2.xml │ ├── com_android_support_test_espresso_espresso_core_3_0_1.xml │ ├── com_android_support_test_espresso_espresso_idling_resource_3_0_1.xml │ ├── com_android_support_test_rules_1_0_1.xml │ ├── com_android_support_test_runner_1_0_1.xml │ ├── com_google_code_findbugs_jsr305_2_0_1_jar.xml │ ├── com_squareup_javawriter_2_1_1_jar.xml │ ├── com_wonderkiln_camerakit_0_13_1.xml │ ├── com_wonderkiln_camerakit_core_0_13_1.xml │ ├── com_wonderkiln_camerakit_vision_0_13_1.xml │ ├── javax_inject_javax_inject_1_jar.xml │ ├── junit_junit_4_12_jar.xml │ ├── net_sf_kxml_kxml2_2_3_0_jar.xml │ ├── org_hamcrest_hamcrest_core_1_3_jar.xml │ ├── org_hamcrest_hamcrest_integration_1_3_jar.xml │ ├── org_hamcrest_hamcrest_library_1_3_jar.xml │ ├── org_jetbrains_annotations_13_0_jar.xml │ ├── org_jetbrains_kotlin_kotlin_stdlib_1_2_20_jar.xml │ └── org_jetbrains_kotlin_kotlin_stdlib_jdk7_1_2_20_jar.xml ├── misc.xml ├── modules.xml ├── runConfigurations.xml ├── vcs.xml └── workspace.xml ├── .travis.yml ├── README.md ├── app ├── .gitignore ├── app.iml ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── br │ │ └── com │ │ └── netodevel │ │ └── demo │ │ └── MainActivity.kt │ └── res │ ├── drawable-v24 │ └── ic_launcher_foreground.xml │ ├── drawable │ ├── ic_launcher_background.xml │ ├── ic_play_circle.xml │ └── ic_stop.xml │ ├── layout │ └── activity_main.xml │ ├── mipmap-anydpi-v26 │ ├── ic_launcher.xml │ └── ic_launcher_round.xml │ ├── mipmap-hdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-mdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xxhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xxxhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ └── values │ ├── colors.xml │ ├── strings.xml │ └── styles.xml ├── art ├── .DS_Store └── demo.gif ├── circle-video-record.iml ├── circle-video-record ├── .gitignore ├── build.gradle ├── circle-video-record-circle-video-record.iml ├── circle-video-record.iml ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── br │ │ └── com │ │ └── netodevel │ │ └── circle_video_record │ │ ├── BuilderCameraView.java │ │ ├── CircleVideoRecord.java │ │ ├── CircularAnimatedDrawable.java │ │ ├── FinishVideoListener.java │ │ ├── MenuState.java │ │ ├── ProgressFrameLayout.java │ │ ├── ProgressListener.java │ │ └── VideoListener.java │ └── res │ ├── anim │ └── to_up.xml │ ├── drawable │ ├── ic_camera.xml │ ├── ic_close.xml │ ├── ic_play.xml │ └── shape_circle.xml │ └── values │ ├── attrs.xml │ ├── colors.xml │ └── strings.xml ├── demo.iml ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── publish.sh ├── settings.gradle └── sonar-project.properties /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gradle/4.1/fileChanges/last-build.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gradle/4.1/fileContent/fileContent.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/.gradle/4.1/fileContent/fileContent.lock -------------------------------------------------------------------------------- /.gradle/4.1/fileHashes/fileHashes.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/.gradle/4.1/fileHashes/fileHashes.bin -------------------------------------------------------------------------------- /.gradle/4.1/fileHashes/fileHashes.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/.gradle/4.1/fileHashes/fileHashes.lock -------------------------------------------------------------------------------- /.gradle/4.1/fileHashes/resourceHashesCache.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/.gradle/4.1/fileHashes/resourceHashesCache.bin -------------------------------------------------------------------------------- /.gradle/4.1/javaCompile/classAnalysis.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/.gradle/4.1/javaCompile/classAnalysis.bin -------------------------------------------------------------------------------- /.gradle/4.1/javaCompile/jarAnalysis.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/.gradle/4.1/javaCompile/jarAnalysis.bin -------------------------------------------------------------------------------- /.gradle/4.1/javaCompile/javaCompile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/.gradle/4.1/javaCompile/javaCompile.lock -------------------------------------------------------------------------------- /.gradle/4.1/javaCompile/taskHistory.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/.gradle/4.1/javaCompile/taskHistory.bin -------------------------------------------------------------------------------- /.gradle/4.1/javaCompile/taskJars.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/.gradle/4.1/javaCompile/taskJars.bin -------------------------------------------------------------------------------- /.gradle/4.1/taskHistory/fileSnapshots.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/.gradle/4.1/taskHistory/fileSnapshots.bin -------------------------------------------------------------------------------- /.gradle/4.1/taskHistory/taskHistory.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/.gradle/4.1/taskHistory/taskHistory.bin -------------------------------------------------------------------------------- /.gradle/4.1/taskHistory/taskHistory.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/.gradle/4.1/taskHistory/taskHistory.lock -------------------------------------------------------------------------------- /.gradle/buildOutputCleanup/built.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gradle/buildOutputCleanup/cache.properties: -------------------------------------------------------------------------------- 1 | #Tue Jan 23 13:50:33 BRT 2018 2 | gradle.version=4.1 3 | -------------------------------------------------------------------------------- /.gradle/buildOutputCleanup/cache.properties.lock: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/libraries/android_arch_core_common_1_0_0_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/.idea/libraries/android_arch_core_common_1_0_0_jar.xml -------------------------------------------------------------------------------- /.idea/libraries/android_arch_lifecycle_common_1_0_3_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/.idea/libraries/android_arch_lifecycle_common_1_0_3_jar.xml -------------------------------------------------------------------------------- /.idea/libraries/android_arch_lifecycle_runtime_1_0_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/.idea/libraries/android_arch_lifecycle_runtime_1_0_3.xml -------------------------------------------------------------------------------- /.idea/libraries/com_android_support_animated_vector_drawable_27_0_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/.idea/libraries/com_android_support_animated_vector_drawable_27_0_2.xml -------------------------------------------------------------------------------- /.idea/libraries/com_android_support_appcompat_v7_27_0_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/.idea/libraries/com_android_support_appcompat_v7_27_0_2.xml -------------------------------------------------------------------------------- /.idea/libraries/com_android_support_constraint_constraint_layout_1_0_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/.idea/libraries/com_android_support_constraint_constraint_layout_1_0_2.xml -------------------------------------------------------------------------------- /.idea/libraries/com_android_support_constraint_constraint_layout_solver_1_0_2_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/.idea/libraries/com_android_support_constraint_constraint_layout_solver_1_0_2_jar.xml -------------------------------------------------------------------------------- /.idea/libraries/com_android_support_exifinterface_27_0_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/.idea/libraries/com_android_support_exifinterface_27_0_2.xml -------------------------------------------------------------------------------- /.idea/libraries/com_android_support_support_annotations_27_0_2_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/.idea/libraries/com_android_support_support_annotations_27_0_2_jar.xml -------------------------------------------------------------------------------- /.idea/libraries/com_android_support_support_compat_27_0_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/.idea/libraries/com_android_support_support_compat_27_0_2.xml -------------------------------------------------------------------------------- /.idea/libraries/com_android_support_support_core_ui_27_0_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/.idea/libraries/com_android_support_support_core_ui_27_0_2.xml -------------------------------------------------------------------------------- /.idea/libraries/com_android_support_support_core_utils_27_0_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/.idea/libraries/com_android_support_support_core_utils_27_0_2.xml -------------------------------------------------------------------------------- /.idea/libraries/com_android_support_support_fragment_27_0_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/.idea/libraries/com_android_support_support_fragment_27_0_2.xml -------------------------------------------------------------------------------- /.idea/libraries/com_android_support_support_vector_drawable_27_0_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/.idea/libraries/com_android_support_support_vector_drawable_27_0_2.xml -------------------------------------------------------------------------------- /.idea/libraries/com_android_support_test_espresso_espresso_core_3_0_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/.idea/libraries/com_android_support_test_espresso_espresso_core_3_0_1.xml -------------------------------------------------------------------------------- /.idea/libraries/com_android_support_test_espresso_espresso_idling_resource_3_0_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/.idea/libraries/com_android_support_test_espresso_espresso_idling_resource_3_0_1.xml -------------------------------------------------------------------------------- /.idea/libraries/com_android_support_test_rules_1_0_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/.idea/libraries/com_android_support_test_rules_1_0_1.xml -------------------------------------------------------------------------------- /.idea/libraries/com_android_support_test_runner_1_0_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/.idea/libraries/com_android_support_test_runner_1_0_1.xml -------------------------------------------------------------------------------- /.idea/libraries/com_google_code_findbugs_jsr305_2_0_1_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/.idea/libraries/com_google_code_findbugs_jsr305_2_0_1_jar.xml -------------------------------------------------------------------------------- /.idea/libraries/com_squareup_javawriter_2_1_1_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/.idea/libraries/com_squareup_javawriter_2_1_1_jar.xml -------------------------------------------------------------------------------- /.idea/libraries/com_wonderkiln_camerakit_0_13_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/.idea/libraries/com_wonderkiln_camerakit_0_13_1.xml -------------------------------------------------------------------------------- /.idea/libraries/com_wonderkiln_camerakit_core_0_13_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/.idea/libraries/com_wonderkiln_camerakit_core_0_13_1.xml -------------------------------------------------------------------------------- /.idea/libraries/com_wonderkiln_camerakit_vision_0_13_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/.idea/libraries/com_wonderkiln_camerakit_vision_0_13_1.xml -------------------------------------------------------------------------------- /.idea/libraries/javax_inject_javax_inject_1_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/.idea/libraries/javax_inject_javax_inject_1_jar.xml -------------------------------------------------------------------------------- /.idea/libraries/junit_junit_4_12_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/.idea/libraries/junit_junit_4_12_jar.xml -------------------------------------------------------------------------------- /.idea/libraries/net_sf_kxml_kxml2_2_3_0_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/.idea/libraries/net_sf_kxml_kxml2_2_3_0_jar.xml -------------------------------------------------------------------------------- /.idea/libraries/org_hamcrest_hamcrest_core_1_3_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/.idea/libraries/org_hamcrest_hamcrest_core_1_3_jar.xml -------------------------------------------------------------------------------- /.idea/libraries/org_hamcrest_hamcrest_integration_1_3_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/.idea/libraries/org_hamcrest_hamcrest_integration_1_3_jar.xml -------------------------------------------------------------------------------- /.idea/libraries/org_hamcrest_hamcrest_library_1_3_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/.idea/libraries/org_hamcrest_hamcrest_library_1_3_jar.xml -------------------------------------------------------------------------------- /.idea/libraries/org_jetbrains_annotations_13_0_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/.idea/libraries/org_jetbrains_annotations_13_0_jar.xml -------------------------------------------------------------------------------- /.idea/libraries/org_jetbrains_kotlin_kotlin_stdlib_1_2_20_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/.idea/libraries/org_jetbrains_kotlin_kotlin_stdlib_1_2_20_jar.xml -------------------------------------------------------------------------------- /.idea/libraries/org_jetbrains_kotlin_kotlin_stdlib_jdk7_1_2_20_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/.idea/libraries/org_jetbrains_kotlin_kotlin_stdlib_jdk7_1_2_20_jar.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/app/app.iml -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/br/com/netodevel/demo/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/app/src/main/java/br/com/netodevel/demo/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_play_circle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/app/src/main/res/drawable/ic_play_circle.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_stop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/app/src/main/res/drawable/ic_stop.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /art/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/art/.DS_Store -------------------------------------------------------------------------------- /art/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/art/demo.gif -------------------------------------------------------------------------------- /circle-video-record.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/circle-video-record.iml -------------------------------------------------------------------------------- /circle-video-record/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /circle-video-record/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/circle-video-record/build.gradle -------------------------------------------------------------------------------- /circle-video-record/circle-video-record-circle-video-record.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/circle-video-record/circle-video-record-circle-video-record.iml -------------------------------------------------------------------------------- /circle-video-record/circle-video-record.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/circle-video-record/circle-video-record.iml -------------------------------------------------------------------------------- /circle-video-record/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/circle-video-record/proguard-rules.pro -------------------------------------------------------------------------------- /circle-video-record/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/circle-video-record/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /circle-video-record/src/main/java/br/com/netodevel/circle_video_record/BuilderCameraView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/circle-video-record/src/main/java/br/com/netodevel/circle_video_record/BuilderCameraView.java -------------------------------------------------------------------------------- /circle-video-record/src/main/java/br/com/netodevel/circle_video_record/CircleVideoRecord.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/circle-video-record/src/main/java/br/com/netodevel/circle_video_record/CircleVideoRecord.java -------------------------------------------------------------------------------- /circle-video-record/src/main/java/br/com/netodevel/circle_video_record/CircularAnimatedDrawable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/circle-video-record/src/main/java/br/com/netodevel/circle_video_record/CircularAnimatedDrawable.java -------------------------------------------------------------------------------- /circle-video-record/src/main/java/br/com/netodevel/circle_video_record/FinishVideoListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/circle-video-record/src/main/java/br/com/netodevel/circle_video_record/FinishVideoListener.java -------------------------------------------------------------------------------- /circle-video-record/src/main/java/br/com/netodevel/circle_video_record/MenuState.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/circle-video-record/src/main/java/br/com/netodevel/circle_video_record/MenuState.java -------------------------------------------------------------------------------- /circle-video-record/src/main/java/br/com/netodevel/circle_video_record/ProgressFrameLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/circle-video-record/src/main/java/br/com/netodevel/circle_video_record/ProgressFrameLayout.java -------------------------------------------------------------------------------- /circle-video-record/src/main/java/br/com/netodevel/circle_video_record/ProgressListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/circle-video-record/src/main/java/br/com/netodevel/circle_video_record/ProgressListener.java -------------------------------------------------------------------------------- /circle-video-record/src/main/java/br/com/netodevel/circle_video_record/VideoListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/circle-video-record/src/main/java/br/com/netodevel/circle_video_record/VideoListener.java -------------------------------------------------------------------------------- /circle-video-record/src/main/res/anim/to_up.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/circle-video-record/src/main/res/anim/to_up.xml -------------------------------------------------------------------------------- /circle-video-record/src/main/res/drawable/ic_camera.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/circle-video-record/src/main/res/drawable/ic_camera.xml -------------------------------------------------------------------------------- /circle-video-record/src/main/res/drawable/ic_close.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/circle-video-record/src/main/res/drawable/ic_close.xml -------------------------------------------------------------------------------- /circle-video-record/src/main/res/drawable/ic_play.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/circle-video-record/src/main/res/drawable/ic_play.xml -------------------------------------------------------------------------------- /circle-video-record/src/main/res/drawable/shape_circle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/circle-video-record/src/main/res/drawable/shape_circle.xml -------------------------------------------------------------------------------- /circle-video-record/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/circle-video-record/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /circle-video-record/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/circle-video-record/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /circle-video-record/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/circle-video-record/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /demo.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/demo.iml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/gradlew.bat -------------------------------------------------------------------------------- /publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/publish.sh -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ':circle-video-record' 2 | -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safetysystemtechnology/circle-video-record/HEAD/sonar-project.properties --------------------------------------------------------------------------------