Skip to content

Commit cb1fb54

Browse files
author
martin
committed
fix crash below 4.4
1 parent ca007e5 commit cb1fb54

File tree

3 files changed

+11
-6
lines changed

3 files changed

+11
-6
lines changed

imagepicker/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ android {
1010
defaultConfig {
1111
minSdkVersion rootProject.ext.minSdk
1212
targetSdkVersion rootProject.ext.targetSdk
13-
versionCode 3
14-
versionName "1.3.1"
13+
versionCode 4
14+
versionName "1.3.2"
1515
}
1616

1717
buildTypes {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
3+
<ripple xmlns:android="http://schemas.android.com/apk/res/android"
4+
android:color="@color/transparent_70_white">
5+
</ripple>
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
3-
<ripple xmlns:android="http://schemas.android.com/apk/res/android"
4-
android:color="@color/transparent_70_white">
5-
</ripple>
2+
<selector xmlns:android="http://schemas.android.com/apk/res/android">
3+
<item android:drawable="@color/transparent_70_white" android:state_pressed="true"/>
4+
<item android:drawable="@android:color/transparent"/>
5+
</selector>

0 commit comments

Comments
 (0)