Skip to content

Commit 32b921f

Browse files
updated dependencies and changed the library name to message view
1 parent 363e8e1 commit 32b921f

File tree

71 files changed

+488
-656
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

71 files changed

+488
-656
lines changed

.gitignore

Lines changed: 0 additions & 7 deletions
This file was deleted.

.idea/caches/build_file_checksums.ser

1 Byte
Binary file not shown.

.idea/caches/gradle_models.ser

-346 Bytes
Binary file not shown.

.idea/codeStyles/Project.xml

Lines changed: 0 additions & 29 deletions
This file was deleted.

.idea/compiler.xml

Lines changed: 0 additions & 22 deletions
This file was deleted.

.idea/copyright/profiles_settings.xml

Lines changed: 0 additions & 3 deletions
This file was deleted.

.idea/gradle.xml

Lines changed: 0 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 14 additions & 58 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Postui.iml

Lines changed: 0 additions & 19 deletions
This file was deleted.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ dependencies {
2626
1. Include `PostMessageView` in your xml of adapter view with content inside.
2727

2828
``` xml
29-
<com.kinda.postui.PostMessageView
29+
<com.kinda.messageview.MessageView
3030
xmlns:app="http://schemas.android.com/apk/res-auto"
3131
android:layout_width="match_parent"
3232
android:layout_height="wrap_content"
@@ -42,7 +42,7 @@ dependencies {
4242

4343
<!-- ... -->
4444

45-
</com.kinda.postui.PostMessageView>
45+
</com.kinda.messageview.MessageView>
4646
```
4747

4848

example/build.gradle renamed to app/build.gradle

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ android {
44
compileSdkVersion 28
55

66
defaultConfig {
7-
applicationId "com.kinda.postui.example"
7+
applicationId "com.kinda.messageview.main"
88
minSdkVersion 15
99
targetSdkVersion 28
10-
versionCode 1
11-
versionName "0.1"
10+
versionCode 2
11+
versionName "1.0.19"
1212
}
1313
buildTypes {
1414
release {
@@ -21,11 +21,14 @@ android {
2121
dependencies {
2222
implementation fileTree(include: ['*.jar'], dir: 'libs')
2323

24-
//post ui
25-
implementation project(':postui')
24+
//message view
25+
implementation project(':messageView')
2626

2727
//android support library
2828
implementation 'com.android.support:appcompat-v7:28.0.0'
29+
implementation 'com.android.support:support-v4:28.0.0'
2930
implementation 'com.android.support:recyclerview-v7:28.0.0'
3031
implementation 'com.android.support:design:28.0.0'
32+
implementation "com.android.support:preference-v7:28.0.0"
33+
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
3134
}
File renamed without changes.

example/src/main/AndroidManifest.xml renamed to app/src/main/AndroidManifest.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3-
package="com.kinda.postui.example">
3+
package="com.kinda.messageview.main">
44

55
<application
66
android:allowBackup="true"
77
android:icon="@mipmap/ic_launcher"
88
android:label="@string/app_name"
99
android:theme="@style/AppTheme">
1010
<activity
11-
android:name="com.kinda.postui.example.MainActivity"
11+
android:name="com.kinda.messageview.main.MainActivity"
1212
android:label="@string/app_name">
1313
<intent-filter>
1414
<action android:name="android.intent.action.MAIN" />
@@ -17,7 +17,7 @@
1717
</intent-filter>
1818
</activity>
1919
<activity
20-
android:name="com.kinda.postui.example.SingleViewActivity"
20+
android:name="com.kinda.messageview.main.SingleViewActivity"
2121
android:label="@string/title_activity_single_view"
2222
android:theme="@style/AppTheme.NoActionBar" />
2323
</application>

0 commit comments

Comments
 (0)