Skip to content

Commit

Permalink
3.0.17 update
Browse files Browse the repository at this point in the history
- Custom notification options
- Android M ready
- voice messaging experience fix
  • Loading branch information
srikrishnan-ganesan committed Oct 29, 2015
1 parent fa6ff62 commit d41f4cb
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 3 deletions.
Binary file modified KonotorActivity/libs/KonotorApi.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion KonotorActivity/maven-push.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group = "com.konotor"
version = "3.0.15"
version = "3.0.17"


apply plugin: 'maven'
Expand Down
14 changes: 14 additions & 0 deletions KonotorActivity/res/layout/konotor_message_screen_layout.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,21 @@
android:background="@color/konotor_chat_bgcolor"
android:divider="#FFFFFF"
android:dividerHeight="0dp"
android:clipToPadding="false"
android:transcriptMode="normal" />

<com.demach.konotor.view.KonotorTextView
android:id="@+id/konotor_announcement_overlay"
android:layout_width="fill_parent"
android:layout_height="@dimen/konotor_overlay_height"
android:layout_alignParentLeft="true"
android:layout_alignTop="@id/konotor_conversation_haed_list"
android:gravity="center"
android:background="@color/konotor_overlay_color"
android:textAppearance="?android:attr/textAppearanceMedium"
android:visibility="gone"
android:textSize="14sp"
android:textColor="@color/konotor_white" />

<RelativeLayout
android:id="@+id/konotor_nav_m_relative_layout"
Expand Down
3 changes: 2 additions & 1 deletion KonotorActivity/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
<string name="konotor_no_network_connection_toast">No network connection found</string>

<color name="konotor_white">#FFFFFF</color>
<color name="konotor_overlay_color">#55555555</color>
<color name="konotor_light_gray">#707070</color>
<color name="konotor_chat_bgcolor">#F0F0F0</color>
<color name="konotor_progress_start">#5eccff</color>
Expand All @@ -30,6 +31,6 @@
<string name="konotor_john_doe">John Doe</string>
<string name="konotor_upload_status">upload_status</string>
<string name="konotor_go">View</string>

<dimen name="konotor_overlay_height">30dp</dimen>

</resources>
3 changes: 2 additions & 1 deletion KonotorActivity/src/com/demach/konotor/access/K.java
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ public static final class id {
public static int message_subject_text=R.id.konotor_message_subject_text;
public static int upload_status = R.id.konotor_upload_status;
public static int message_link = R.id.konotor_dl_button;

public static int announcement_overlay=R.id.konotor_announcement_overlay;

//added for Picture messages
public static int iv_icon=R.id.konotor_iv_icon;
Expand Down Expand Up @@ -148,6 +148,7 @@ public static final class string {
public static int time=R.string.konotor_time;
public static int toggle_speaker=R.string.konotor_toggle_speaker;
public static int you=R.string.konotor_you;
public static int overlay_layout_height=R.dimen.konotor_overlay_height;
}
public static final class style {
/**
Expand Down

0 comments on commit d41f4cb

Please sign in to comment.