Step 1. Add the JitPack repository to your build file
Add it in your root settings.gradle at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
Add it in your settings.gradle.kts at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url = uri("https://jitpack.io") }
}
}
Add to pom.xml
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
Add it in your build.sbt at the end of resolvers:
resolvers += "jitpack" at "https://jitpack.io"
Add it in your project.clj at the end of repositories:
:repositories [["jitpack" "https://jitpack.io"]]
Step 2. Add the dependency
dependencies {
implementation 'com.github.google:cameraview:'
}
dependencies {
implementation("com.github.google:cameraview:")
}
<dependency>
<groupId>com.github.google</groupId>
<artifactId>cameraview</artifactId>
<version></version>
</dependency>
libraryDependencies += "com.github.google" % "cameraview" % ""
:dependencies [[com.github.google/cameraview ""]]
CameraView is deprecated. No more development will be taking place.
Use Jetpack CameraX instead.
This is not an official Google product.
CameraView aims to help Android developers easily integrate Camera features.
Requires API Level 9. The library uses Camera 1 API on API Level 9-20 and Camera2 on 21 and above.
| API Level | Camera API | Preview View | |:---------:|------------|--------------| | 9-13 | Camera1 | SurfaceView | | 14-20 | Camera1 | TextureView | | 21-23 | Camera2 | TextureView | | 24 | Camera2 | SurfaceView |
<com.google.android.cameraview.CameraView
android:id="@+id/camera"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:keepScreenOn="true"
android:adjustViewBounds="true"
app:autoFocus="true"
app:aspectRatio="4:3"
app:facing="back"
app:flash="auto"/>
@Override
protected void onResume() {
super.onResume();
mCameraView.start();
}
@Override
protected void onPause() {
mCameraView.stop();
super.onPause();
}
You can see a complete usage in the demo app.
See CONTRIBUTING.md.