Skip to content

Commit 4c184ba

Browse files
committed
update version to 2.3.1
1 parent 58f11a4 commit 4c184ba

File tree

2 files changed

+31
-3
lines changed

2 files changed

+31
-3
lines changed

cropper/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ apply plugin: 'maven-publish'
66
ext {
77
PUBLISH_GROUP_ID = 'com.theartofdev.edmodo'
88
PUBLISH_ARTIFACT_ID = 'android-image-cropper'
9-
PUBLISH_VERSION = '2.3.0'
9+
PUBLISH_VERSION = '2.3.1'
1010
// gradlew clean build generateRelease
1111
}
1212

Lines changed: 30 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,33 @@
1-
<com.theartofdev.edmodo.cropper.CropImageView
1+
<!--<com.theartofdev.edmodo.cropper.CropImageView
22
android:id="@+id/cropImageView"
33
xmlns:android="http://schemas.android.com/apk/res/android"
44
android:layout_width="match_parent"
5-
android:layout_height="match_parent"/>
5+
android:layout_height="match_parent"/>-->
6+
7+
<LinearLayout
8+
android:id="@+id/cropImageViewLayout"
9+
xmlns:android="http://schemas.android.com/apk/res/android"
10+
android:layout_width="match_parent"
11+
android:layout_height="match_parent"
12+
android:orientation="vertical"
13+
android:visibility="visible">
14+
15+
<TextView
16+
android:layout_width="match_parent"
17+
android:layout_height="wrap_content"
18+
android:text="Testing 1..2..3.."/>
19+
20+
<com.theartofdev.edmodo.cropper.CropImageView
21+
android:id="@+id/cropImageView"
22+
android:layout_width="match_parent"
23+
android:layout_height="0dp"
24+
android:layout_weight="1"
25+
/>
26+
27+
<TextView
28+
android:layout_width="match_parent"
29+
android:layout_height="0dp"
30+
android:text="Testing 1..2..3.."
31+
android:layout_weight="2"
32+
android:textSize="40sp"/>
33+
</LinearLayout>

0 commit comments

Comments
 (0)