Updated to new UI Added AdBlocker Added Google Search Suggestions Tons of other stuffmaster
After Width: | Height: | Size: 3.4 KiB |
After Width: | Height: | Size: 12 KiB |
After Width: | Height: | Size: 20 KiB |
After Width: | Height: | Size: 14 KiB |
After Width: | Height: | Size: 21 KiB |
After Width: | Height: | Size: 14 KiB |
After Width: | Height: | Size: 44 KiB |
After Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 59 KiB After Width: | Height: | Size: 62 KiB |
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 12 KiB |
@ -1,69 +0,0 @@
@@ -1,69 +0,0 @@
|
||||
# To enable ProGuard in your project, edit project.properties |
||||
# to define the proguard.config property as described in that file. |
||||
# |
||||
# Add project specific ProGuard rules here. |
||||
# By default, the flags in this file are appended to flags specified |
||||
# in ${sdk.dir}/tools/proguard/proguard-android.txt |
||||
# You can edit the include path and order by changing the ProGuard |
||||
# include property in project.properties. |
||||
# |
||||
# For more details, see |
||||
# http://developer.android.com/guide/developing/tools/proguard.html |
||||
|
||||
# Add any project specific keep options here: |
||||
|
||||
# If your project uses WebView with JS, uncomment the following |
||||
# and specify the fully qualified class name to the JavaScript interface |
||||
# class: |
||||
-keepclassmembers class fqcn.of.javascript.interface.for.webview { |
||||
public *; |
||||
} |
||||
|
||||
-keep class acr.browser.barebones.webviewclasses.CustomChromeClient{ |
||||
public *; |
||||
private *; |
||||
protected *; |
||||
} |
||||
|
||||
-keep class acr.browser.barebones.webviewclasses.CustomWebViewClient{ |
||||
public *; |
||||
private *; |
||||
protected *; |
||||
} |
||||
|
||||
-keep class acr.browser.barebones.customwebview.CustomWebView{ |
||||
public *; |
||||
private *; |
||||
protected *; |
||||
} |
||||
|
||||
-keep class acr.browser.barebones.activities.BrowserActivity{ |
||||
public void browserSettings(...); |
||||
public void makeTab(...); |
||||
public void newTab(...); |
||||
public void onLongClick(...); |
||||
} |
||||
|
||||
-keep class acr.browser.barebones.incognitoclasses.IncognitoChromeClient{ |
||||
public *; |
||||
private *; |
||||
protected *; |
||||
} |
||||
|
||||
-keep class acr.browser.barebones.incognitoclasses.IncognitoWebViewClient{ |
||||
public *; |
||||
private *; |
||||
protected *; |
||||
} |
||||
|
||||
-keep class acr.browser.barebones.customwebview.IncognitoWebView{ |
||||
public *; |
||||
private *; |
||||
protected *; |
||||
} |
||||
|
||||
-keep class acr.browser.barebones.activities.IncognitoModeActivity{ |
||||
public void browserSettings(...); |
||||
public void makeTab(...); |
||||
public void newTab(...); |
||||
} |
@ -1,8 +0,0 @@
@@ -1,8 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?> |
||||
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android"> |
||||
|
||||
<translate android:fromYDelta="0%p" |
||||
android:interpolator="@android:anim/linear_interpolator" |
||||
android:toYDelta="100%p" android:duration="150" /> |
||||
</set> |
@ -1,10 +0,0 @@
@@ -1,10 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?> |
||||
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android"> |
||||
|
||||
<translate android:fromXDelta="0%p" |
||||
android:interpolator="@android:anim/decelerate_interpolator" |
||||
android:toXDelta="2%p" android:duration="150" |
||||
/> |
||||
|
||||
</set> |
@ -1,10 +0,0 @@
@@ -1,10 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?> |
||||
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android"> |
||||
|
||||
<translate android:fromXDelta="0%p" |
||||
android:interpolator="@android:anim/anticipate_overshoot_interpolator" |
||||
android:toXDelta="-2%p" android:duration="150" |
||||
/> |
||||
|
||||
</set> |
@ -1,10 +0,0 @@
@@ -1,10 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<rotate |
||||
xmlns:android="http://schemas.android.com/apk/res/android" |
||||
android:fromDegrees="0" |
||||
android:toDegrees="360" |
||||
android:pivotX="50%" |
||||
android:pivotY="50%" |
||||
android:repeatCount="infinite" |
||||
android:duration="1200" |
||||
android:interpolator="@android:anim/linear_interpolator"/> |
@ -1,11 +0,0 @@
@@ -1,11 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?> |
||||
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android" |
||||
android:shareInterpolator="false"> |
||||
<translate android:fromYDelta="-50%" android:toYDelta="0" |
||||
android:interpolator="@android:anim/decelerate_interpolator" |
||||
android:duration="@android:integer/config_shortAnimTime"/> |
||||
<alpha android:fromAlpha="0.25" android:toAlpha="1.0" |
||||
android:interpolator="@android:anim/linear_interpolator" |
||||
android:duration="@android:integer/config_shortAnimTime" /> |
||||
</set> |
@ -1,11 +0,0 @@
@@ -1,11 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?> |
||||
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android" |
||||
android:shareInterpolator="false"> |
||||
<translate android:fromYDelta="0" android:toYDelta="-50%" |
||||
android:interpolator="@android:anim/decelerate_interpolator" |
||||
android:duration="@android:integer/config_shortAnimTime"/> |
||||
<alpha android:fromAlpha="1.0" android:toAlpha="0.25" |
||||
android:interpolator="@android:anim/linear_interpolator" |
||||
android:duration="@android:integer/config_shortAnimTime" /> |
||||
</set> |
@ -1,8 +0,0 @@
@@ -1,8 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?> |
||||
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android"> |
||||
|
||||
<translate android:fromYDelta="100%p" |
||||
android:interpolator="@android:anim/linear_interpolator" |
||||
android:toYDelta="0%p" android:duration="250" /> |
||||
</set> |
After Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 417 B |
After Width: | Height: | Size: 171 B |
Before Width: | Height: | Size: 220 B After Width: | Height: | Size: 220 B |
After Width: | Height: | Size: 198 B |
After Width: | Height: | Size: 227 B |
Before Width: | Height: | Size: 244 B After Width: | Height: | Size: 244 B |
Before Width: | Height: | Size: 225 B After Width: | Height: | Size: 225 B |
After Width: | Height: | Size: 210 B |
After Width: | Height: | Size: 313 B |
After Width: | Height: | Size: 634 B |
After Width: | Height: | Size: 554 B |
After Width: | Height: | Size: 2.8 KiB |
After Width: | Height: | Size: 675 B |
After Width: | Height: | Size: 610 B |
Before Width: | Height: | Size: 5.0 KiB After Width: | Height: | Size: 4.4 KiB |
After Width: | Height: | Size: 688 B |
After Width: | Height: | Size: 618 B |
After Width: | Height: | Size: 254 B |
After Width: | Height: | Size: 3.1 KiB |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 88 B |
Before Width: | Height: | Size: 318 B |
Before Width: | Height: | Size: 181 B |
Before Width: | Height: | Size: 177 B |
Before Width: | Height: | Size: 824 B |
After Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 300 B |
After Width: | Height: | Size: 158 B |
Before Width: | Height: | Size: 170 B After Width: | Height: | Size: 170 B |
After Width: | Height: | Size: 157 B |
After Width: | Height: | Size: 175 B |
Before Width: | Height: | Size: 192 B After Width: | Height: | Size: 192 B |
Before Width: | Height: | Size: 180 B After Width: | Height: | Size: 180 B |
After Width: | Height: | Size: 168 B |
After Width: | Height: | Size: 248 B |
After Width: | Height: | Size: 439 B |
After Width: | Height: | Size: 379 B |
After Width: | Height: | Size: 2.8 KiB |
After Width: | Height: | Size: 465 B |
After Width: | Height: | Size: 409 B |
Before Width: | Height: | Size: 3.0 KiB After Width: | Height: | Size: 2.6 KiB |
After Width: | Height: | Size: 482 B |
After Width: | Height: | Size: 418 B |
After Width: | Height: | Size: 199 B |
After Width: | Height: | Size: 1.9 KiB |
Before Width: | Height: | Size: 819 B After Width: | Height: | Size: 819 B |
Before Width: | Height: | Size: 83 B |
Before Width: | Height: | Size: 243 B |
Before Width: | Height: | Size: 154 B |
Before Width: | Height: | Size: 161 B |
Before Width: | Height: | Size: 578 B |
After Width: | Height: | Size: 2.1 KiB |
Before Width: | Height: | Size: 559 B |
Before Width: | Height: | Size: 243 B |
Before Width: | Height: | Size: 976 B |
Before Width: | Height: | Size: 936 B |
Before Width: | Height: | Size: 706 B |
Before Width: | Height: | Size: 984 B |
Before Width: | Height: | Size: 191 B |
After Width: | Height: | Size: 182 B |
After Width: | Height: | Size: 220 B |
Before Width: | Height: | Size: 248 B After Width: | Height: | Size: 248 B |
After Width: | Height: | Size: 229 B |
After Width: | Height: | Size: 252 B |
Before Width: | Height: | Size: 289 B After Width: | Height: | Size: 289 B |
Before Width: | Height: | Size: 255 B After Width: | Height: | Size: 255 B |
After Width: | Height: | Size: 239 B |
After Width: | Height: | Size: 401 B |
After Width: | Height: | Size: 813 B |
After Width: | Height: | Size: 699 B |
After Width: | Height: | Size: 1.0 KiB |
After Width: | Height: | Size: 943 B |
After Width: | Height: | Size: 836 B |
Before Width: | Height: | Size: 7.1 KiB After Width: | Height: | Size: 6.5 KiB |
After Width: | Height: | Size: 902 B |
After Width: | Height: | Size: 782 B |
After Width: | Height: | Size: 319 B |
After Width: | Height: | Size: 4.2 KiB |