-
-
Notifications
You must be signed in to change notification settings - Fork 940
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Kotlin 1.4.0, fixes #940 * Fix multifilter bug, fixes #875 * Fix arithmetic exception, fixes #895 * Update dependencies * Demo app in Kotlin * Avoid stackoverflows on zoom/ev, fixes #856 * Remove Gemfile.lock * Try to fix build
- Loading branch information
Showing
24 changed files
with
1,040 additions
and
1,744 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,23 @@ | ||
plugins { | ||
id("com.android.application") | ||
id("kotlin-android") | ||
} | ||
|
||
android { | ||
setCompileSdkVersion(rootProject.property("compileSdkVersion") as Int) | ||
setCompileSdkVersion(property("compileSdkVersion") as Int) | ||
defaultConfig { | ||
applicationId = "com.otaliastudios.cameraview.demo" | ||
setMinSdkVersion(rootProject.property("minSdkVersion") as Int) | ||
setTargetSdkVersion(rootProject.property("targetSdkVersion") as Int) | ||
setMinSdkVersion(property("minSdkVersion") as Int) | ||
setTargetSdkVersion(property("targetSdkVersion") as Int) | ||
versionCode = 1 | ||
versionName = "1.0" | ||
vectorDrawables.useSupportLibrary = true | ||
} | ||
sourceSets["main"].java.srcDir("src/main/kotlin") | ||
} | ||
|
||
dependencies { | ||
implementation(project(":cameraview")) | ||
implementation("androidx.appcompat:appcompat:1.1.0") | ||
implementation("com.google.android.material:material:1.1.0") | ||
implementation("androidx.appcompat:appcompat:1.2.0") | ||
implementation("com.google.android.material:material:1.2.0") | ||
} |
Oops, something went wrong.