demo v1.0.3 lib v0.9.15

pull/1/head
Dylan McIntyre 8 years ago
parent 987d946454
commit 92752a3e3a
  1. 4
      README.md
  2. 2
      camerakit/build.gradle
  3. 4
      demo/build.gradle
  4. 1
      demo/src/main/java/com/flurgle/camerakit/demo/MainActivity.java

@ -47,7 +47,7 @@ Try out all the unique features using the CameraKit Demo from the Google Play st
- `METHOD_STILL`: a freeze frame of the `CameraView` preview (similar to SnapChat and Instagram) for devices with slower cameras.
- **Coming soon:** `METHOD_SPEED`: automatic capture method determination based on measured speed.
- Built-in continuous focus.
- **Coming soon:** Built-in tap to focus.
- Built-in tap to focus.
- **Coming soon:** Built-in pinch to zoom.
## Setup
@ -55,7 +55,7 @@ Try out all the unique features using the CameraKit Demo from the Google Play st
Add __CameraKit__ to the dependencies block in your `app` level `build.gradle`:
```groovy
compile 'com.flurgle:camerakit:0.9.14'
compile 'com.flurgle:camerakit:0.9.15'
```
## Usage

@ -3,7 +3,7 @@ apply plugin: 'com.android.library'
ext {
PUBLISH_GROUP_ID = 'com.flurgle'
PUBLISH_ARTIFACT_ID = 'camerakit'
PUBLISH_VERSION = '0.9.14'
PUBLISH_VERSION = '0.9.15'
}
android {

@ -7,8 +7,8 @@ android {
applicationId "com.flurgle.camerakit.demo"
minSdkVersion 15
targetSdkVersion 25
versionCode 3
versionName "1.0.2"
versionCode 4
versionName "1.0.3"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {

@ -135,7 +135,6 @@ public class MainActivity extends AppCompatActivity implements View.OnLayoutChan
@Override
public void onVideoTaken(File video) {
super.onVideoTaken(video);
}
});

Loading…
Cancel
Save