Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Videos support #15

Open
wants to merge 10 commits into
base: master
Choose a base branch
from
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
ext.kotlin_version = '1.3.31'
ext.kotlin_version = '1.3.61'
repositories {
google()
jcenter()
Expand Down
6 changes: 3 additions & 3 deletions photopicker/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ dependencies {

implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"

implementation "androidx.core:core-ktx:1.2.0-beta01"
implementation 'androidx.core:core-ktx:1.3.0-alpha02'
implementation "androidx.appcompat:appcompat:1.1.0"
implementation "androidx.constraintlayout:constraintlayout:1.1.3"
implementation "com.google.android.material:material:1.1.0-beta01"
implementation 'com.google.android.material:material:1.2.0-alpha05'
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.2"
implementation "androidx.lifecycle:lifecycle-extensions:2.1.0"
implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0'
}
2 changes: 1 addition & 1 deletion photopicker/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<uses-permission android:name="android.permission.CAMERA" />

<application>
<application android:requestLegacyExternalStorage="true">

<activity
android:name=".utils.CameraActivity"
Expand Down
Loading