Skip to content

Commit 39b0290

Browse files
committed
include all local changes
1 parent 343fafa commit 39b0290

File tree

5 files changed

+18
-5
lines changed

5 files changed

+18
-5
lines changed

ARE/app/build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ android {
1919
dependencies {
2020
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
2121
implementation 'com.android.support:design:27.1.0'
22-
compile 'com.android.support:appcompat-v7:27.1.0'
22+
implementation 'com.android.support:appcompat-v7:27.1.0'
2323
implementation project(':are')
24-
// implementation 'com.github.bumptech.glide:glide:4.3.1'
25-
// implementation 'com.github.chinalwb:are:0.1.2'
24+
implementation 'com.github.bumptech.glide:glide:4.3.0'
25+
// implementation 'com.github.chinalwb:are:0.1.3'
2626
}

ARE/app/release/app-release.apk

2.59 MB
Binary file not shown.

ARE/app/src/main/java/com/chinalwb/are/demo/IndexActivity.java

+7
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55
import android.os.Bundle;
66
import android.view.View;
77
import android.widget.Button;
8+
import android.widget.ImageView;
9+
10+
import com.chinalwb.are.glidesupport.GlideApp;
811

912
public class IndexActivity extends AppCompatActivity {
1013

@@ -14,6 +17,10 @@ protected void onCreate(Bundle savedInstanceState) {
1417
setContentView(R.layout.activity_index);
1518

1619
initViews();
20+
21+
ImageView imageView = (ImageView) findViewById(R.id.image);
22+
23+
GlideApp.with(this).load("http://a.hiphotos.baidu.com/image/h%3D300/sign=b18b23079522720e64cee4fa4bca0a3a/4a36acaf2edda3ccc4a53e450ce93901213f9216.jpg").into(imageView);
1724
}
1825

1926
private void initViews() {

ARE/app/src/main/res/layout/activity_index.xml

+6
Original file line numberDiff line numberDiff line change
@@ -50,5 +50,11 @@
5050
android:textAllCaps="false"
5151
android:text="AREditor Min Hide"/>
5252

53+
<ImageView
54+
android:id="@+id/image"
55+
android:layout_width="300dp"
56+
android:layout_height="300dp"
57+
android:background="@color/colorAccent"/>
58+
5359

5460
</LinearLayout>

ARE/are/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apply plugin: 'com.android.library'
33
ext {
44
PUBLISH_GROUP_ID = 'com.github.chinalwb'
55
PUBLISH_ARTIFACT_ID = 'are'
6-
PUBLISH_VERSION = '0.1.3'
6+
PUBLISH_VERSION = '0.1.4'
77
}
88

99

@@ -54,5 +54,5 @@ dependencies {
5454
annotationProcessor 'com.github.bumptech.glide:compiler:4.3.1'
5555
}
5656

57-
// apply from: 'https://raw.githubusercontent.com/blundell/release-android-library/master/android-release-aar.gradle'
57+
apply from: 'https://raw.githubusercontent.com/blundell/release-android-library/master/android-release-aar.gradle'
5858
// ./gradlew clean build generateRelease

0 commit comments

Comments
 (0)