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. - `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. - **Coming soon:** `METHOD_SPEED`: automatic capture method determination based on measured speed.
- Built-in continuous focus. - Built-in continuous focus.
- **Coming soon:** Built-in tap to focus. - Built-in tap to focus.
- **Coming soon:** Built-in pinch to zoom. - **Coming soon:** Built-in pinch to zoom.
## Setup ## 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`: Add __CameraKit__ to the dependencies block in your `app` level `build.gradle`:
```groovy ```groovy
compile 'com.flurgle:camerakit:0.9.14' compile 'com.flurgle:camerakit:0.9.15'
``` ```
## Usage ## Usage

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

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

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

Loading…
Cancel
Save