Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,23 @@
<resource-file src="src/android/res/drawable-xhdpi/ic_action_remove.png" target="res/drawable-xhdpi/ic_action_remove.png" />
<resource-file src="src/android/res/drawable-xxhdpi/ic_action_remove.png" target="res/drawable-xxhdpi/ic_action_remove.png" />

<resource-file src="src/android/res/drawable-hdpi/ic_lock_ssl.png" target="res/drawable-hdpi/ic_lock_ssl.png" />
<resource-file src="src/android/res/drawable-mdpi/ic_lock_ssl.png" target="res/drawable-mdpi/ic_lock_ssl.png" />
<resource-file src="src/android/res/drawable-xhdpi/ic_lock_ssl.png" target="res/drawable-xhdpi/ic_lock_ssl.png" />
<resource-file src="src/android/res/drawable-xxhdpi/ic_lock_ssl.png" target="res/drawable-xxhdpi/ic_lock_ssl.png" />



<resource-file src="src/android/res/drawable-hdpi/ic_back_edittext.png" target="res/drawable-hdpi/ic_back_edittext.png" />
<resource-file src="src/android/res/drawable-mdpi/ic_back_edittext.png" target="res/drawable-mdpi/ic_back_edittext.png" />
<resource-file src="src/android/res/drawable-xhdpi/ic_back_edittext.png" target="res/drawable-xhdpi/ic_back_edittext.png" />
<resource-file src="src/android/res/drawable-xxhdpi/ic_back_edittext.png" target="res/drawable-xxhdpi/ic_back_edittext.png" />


<resource-file src="src/android/res/drawable/bg_stay.png" target="res/drawable/bg_stay.png" />
<resource-file src="src/android/res/drawable/bg_continue.png" target="res/drawable/bg_continue.png" />
<resource-file src="src/android/res/drawable/bg_back_button.png" target="res/drawable/bg_back_button.png" />

</platform>

<!-- ios -->
Expand Down
262 changes: 192 additions & 70 deletions src/android/InAppBrowser.java

Large diffs are not rendered by default.

Binary file modified src/android/res/drawable-hdpi/ic_action_previous_item.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/android/res/drawable-hdpi/ic_action_remove.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/android/res/drawable-hdpi/ic_back_edittext.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/android/res/drawable-hdpi/ic_lock_ssl.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/android/res/drawable-mdpi/ic_action_previous_item.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/android/res/drawable-mdpi/ic_action_remove.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/android/res/drawable-mdpi/ic_back_edittext.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/android/res/drawable-mdpi/ic_lock_ssl.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/android/res/drawable-xhdpi/ic_action_previous_item.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/android/res/drawable-xhdpi/ic_action_remove.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/android/res/drawable-xhdpi/ic_back_edittext.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/android/res/drawable-xhdpi/ic_lock_ssl.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/android/res/drawable-xxhdpi/ic_action_previous_item.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/android/res/drawable-xxhdpi/ic_action_remove.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/android/res/drawable-xxhdpi/ic_back_edittext.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/android/res/drawable-xxhdpi/ic_lock_ssl.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions src/android/res/drawable/bg_back_button.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="#D7EDD4"/>
<corners android:radius="8dp"/>
</shape>
5 changes: 5 additions & 0 deletions src/android/res/drawable/bg_continue.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<corners android:radius="10dp"/>
<stroke android:width="1dp" android:color="#06c270"/>
</shape>
5 changes: 5 additions & 0 deletions src/android/res/drawable/bg_stay.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<corners android:radius="10dp"/>
<solid android:color="#06c270"/>
</shape>