-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #59 from LcTerry/master
更新Android Jpush 4.8.1+JCore 3.3.4
- Loading branch information
Showing
23 changed files
with
213 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file removed
BIN
-539 KB
PLuginsAndroidAARCode/jpush-unity-plugin/libs/jcore-android-2.4.2.jar
Binary file not shown.
Binary file not shown.
Binary file removed
BIN
-362 KB
PLuginsAndroidAARCode/jpush-unity-plugin/libs/jpush-android-3.7.0.jar
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file renamed
BIN
+5.7 KB
...src/main/jniLibs/arm64-v8a/libjcore242.so → ...src/main/jniLibs/arm64-v8a/libjcore334.so
Binary file not shown.
Binary file renamed
BIN
+13.5 KB
...c/main/jniLibs/armeabi-v7a/libjcore242.so → ...c/main/jniLibs/armeabi-v7a/libjcore334.so
Binary file not shown.
Binary file renamed
BIN
+17.5 KB
...n/src/main/jniLibs/armeabi/libjcore242.so → ...n/src/main/jniLibs/armeabi/libjcore334.so
Binary file not shown.
Binary file renamed
BIN
+5.55 KB
...ugin/src/main/jniLibs/mips/libjcore242.so → ...ugin/src/main/jniLibs/mips/libjcore334.so
Binary file not shown.
Binary file renamed
BIN
+6.2 KB
...in/src/main/jniLibs/mips64/libjcore242.so → ...in/src/main/jniLibs/mips64/libjcore334.so
Binary file not shown.
Binary file renamed
BIN
+5.36 KB
...lugin/src/main/jniLibs/x86/libjcore242.so → ...lugin/src/main/jniLibs/x86/libjcore334.so
Binary file not shown.
Binary file renamed
BIN
+5.97 KB
...in/src/main/jniLibs/x86_64/libjcore242.so → ...in/src/main/jniLibs/x86_64/libjcore334.so
Binary file not shown.
8 changes: 8 additions & 0 deletions
8
...roidAARCode/jpush-unity-plugin/src/main/res/drawable-hdpi/jpush_btn_bg_green_playable.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<shape xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:shape="rectangle" | ||
> | ||
<corners android:radius="6dp" /> | ||
<solid android:color="#0A9789" /> | ||
<stroke android:color="#0A9789" android:width="1dp"/> | ||
</shape> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
107 changes: 107 additions & 0 deletions
107
...droidAARCode/jpush-unity-plugin/src/main/res/layout/push_download_notification_layout.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,107 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:id="@+id/jad_root_view" | ||
android:layout_width="match_parent" | ||
android:layout_height="64dp" | ||
android:orientation="horizontal" | ||
android:padding="10dp"> | ||
|
||
<ImageView | ||
android:id="@+id/jad_icon" | ||
android:layout_width="44dp" | ||
android:layout_height="44dp" | ||
android:layout_gravity="center" | ||
android:layout_marginRight="18dp" | ||
android:layout_marginEnd="18dp" | ||
android:background="#0A9789" | ||
android:duplicateParentState="false" | ||
android:scaleType="center" /> | ||
|
||
<RelativeLayout | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:layout_weight="1"> | ||
|
||
<TextView | ||
android:id="@+id/jad_desc" | ||
android:layout_width="fill_parent" | ||
android:layout_height="wrap_content" | ||
android:ellipsize="end" | ||
android:singleLine="true" | ||
android:textColor="#000000" | ||
android:textSize="14sp"/> | ||
|
||
<LinearLayout | ||
android:id="@+id/jad_download_success" | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:layout_below="@+id/jad_desc" | ||
android:orientation="horizontal" | ||
android:visibility="gone"> | ||
<TextView | ||
android:id="@+id/download_success_size" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:layout_marginRight="12dp" | ||
android:layout_marginEnd="12dp" | ||
android:ellipsize="end" | ||
android:gravity="start|center" | ||
android:singleLine="true" | ||
android:textColor="#000000" | ||
android:textSize="12sp"/> | ||
<TextView | ||
android:id="@+id/jad_download_success_status" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:ellipsize="end" | ||
android:gravity="start|center" | ||
android:singleLine="true" | ||
android:textColor="#000000" | ||
android:textSize="11sp"/> | ||
</LinearLayout> | ||
|
||
<LinearLayout | ||
android:id="@+id/jad_download_text" | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:layout_below="@+id/jad_desc" | ||
android:orientation="horizontal" | ||
android:visibility="visible"> | ||
|
||
<TextView | ||
android:id="@+id/jad_download_size" | ||
android:layout_width="0dp" | ||
android:layout_height="wrap_content" | ||
android:layout_weight="3" | ||
android:ellipsize="end" | ||
android:gravity="start|center" | ||
android:maxLines="1" | ||
android:textColor="#000000" | ||
android:textSize="11sp"/> | ||
|
||
<TextView | ||
android:id="@+id/jad_download_status" | ||
android:layout_width="0dp" | ||
android:layout_height="wrap_content" | ||
android:layout_weight="2" | ||
android:ellipsize="end" | ||
android:gravity="end|center" | ||
android:singleLine="true" | ||
android:textColor="#000000" | ||
android:textSize="11sp"/> | ||
</LinearLayout> | ||
</RelativeLayout> | ||
|
||
<TextView | ||
android:id="@+id/jad_action" | ||
android:layout_width="55dp" | ||
android:layout_height="30dp" | ||
android:layout_gravity="end|center" | ||
android:layout_marginLeft="18dp" | ||
android:layout_marginStart="18dp" | ||
android:layout_weight="0" | ||
android:gravity="center" | ||
android:background="@drawable/jpush_btn_bg_green_playable" | ||
android:textColor="#FFFFFF" | ||
android:textSize="12sp"/> | ||
</LinearLayout> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
PLuginsAndroidAARCode/jpush-unity-plugin/src/main/res/xml/jpush_file_paths.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<resources> | ||
<paths> | ||
<root-path name="jad_root_path" path="."/> | ||
<external-path name="jad_external_path" path="JAdDownload" /> | ||
<external-files-path name="jad_external_files_path" path="JAdDownload" /> | ||
<files-path name="jad_files_path" path="JAdDownload" /> | ||
<cache-path name="jad_cache_path" path="JAdDownload" /> | ||
</paths> | ||
</resources> |
Oops, something went wrong.