Script To Buy YuReka! [Based on today's flash sale too!] - Miscellaneous Android Development

Sorry, I couldn't find a better place to share this script.. I saw "script" written in this forums's description so posting here..
The script:
Code:
var _0x5f2a=["\x61\x28\x63\x28\x29\x7B\x32\x28\x27\x2E\x33\x27\x29\x2E\x34\x28\x27\x36\x27\x29\x3B\x37\x2E\x38\x28\x27\x39\x20\x30\x20\x62\x20\x31\x20\x30\x20\x64\x20\x65\x2E\x2E\x20\x66\x20\x67\x20\x68\x20\x69\x20\x6A\x2E\x6B\x2E\x6C\x20\x2E\x2E\x27\x29\x7D\x2C\x35\x29\x3B","\x7C","\x73\x70\x6C\x69\x74","\x54\x6F\x7C\x59\x75\x52\x65\x6B\x61\x7C\x6A\x51\x75\x65\x72\x79\x7C\x62\x74\x6E\x7C\x74\x72\x69\x67\x67\x65\x72\x7C\x7C\x63\x6C\x69\x63\x6B\x7C\x63\x6F\x6E\x73\x6F\x6C\x65\x7C\x6C\x6F\x67\x7C\x54\x72\x79\x69\x6E\x67\x7C\x73\x65\x74\x49\x6E\x74\x65\x72\x76\x61\x6C\x7C\x41\x64\x64\x7C\x66\x75\x6E\x63\x74\x69\x6F\x6E\x7C\x59\x6F\x75\x72\x7C\x43\x61\x72\x74\x7C\x53\x63\x72\x69\x70\x74\x7C\x43\x72\x65\x64\x69\x74\x7C\x47\x6F\x65\x73\x7C\x74\x6F\x7C\x57\x57\x57\x7C\x58\x50\x4F\x53\x45\x44\x47\x45\x45\x4B\x7C\x4E\x45\x54","\x72\x65\x70\x6C\x61\x63\x65","","\x5C\x77\x2B","\x5C\x62","\x67"]
eval(function(_0xae6dx1,_0xae6dx2,_0xae6dx3,_0xae6dx4,_0xae6dx5,_0xae6dx6)
{
_0xae6dx5=function(_0xae6dx3)
{
return _0xae6dx3.toString(_0xae6dx2)
}
;
if(!_0x5f2a[5][_0x5f2a[4]](/^/,String))
{
while(_0xae6dx3--)
{
_0xae6dx6[_0xae6dx5(_0xae6dx3)]=_0xae6dx4[_0xae6dx3]||_0xae6dx5(_0xae6dx3)
}
_0xae6dx4=[function(_0xae6dx5)
{
return _0xae6dx6[_0xae6dx5]
}
];
_0xae6dx5=function()
{
return _0x5f2a[6]
}
;
_0xae6dx3=1;
}
;
while(_0xae6dx3--)
{
if(_0xae6dx4[_0xae6dx3])
{
_0xae6dx1=_0xae6dx1[_0x5f2a[4]]( new RegExp(_0x5f2a[7]+_0xae6dx5(_0xae6dx3)+_0x5f2a[7],_0x5f2a[8]),_0xae6dx4[_0xae6dx3])
}
}
return _0xae6dx1
}
(_0x5f2a[0],22,22,_0x5f2a[3][_0x5f2a[2]](_0x5f2a[1]),0,{}));
Usage, screenshots, proofs here: [Tutorial with screenshots]
http://bit.ly/1anFuTA

Related

[Q] Problem with Receive SMS in WindowsMobile

this is part of my code in MIDlet Class:
Code:
public class MIDletName extends MIDlet implements MessageListener{
private MessageConnection notifyCon;
public Constructor()
{
}
public void pauseApp()
{
notifyPaused();
}
public void destroyApp(boolean unconditional)
{
try
{
if(notifyCon != null)
{
this.notifyCon.setMessageListener(null);
this.notifyCon.close();
}
//return;
}
catch (IOException ioex)
{
}
finally
{
notifyCon = null;
}
System.gc();
notifyDestroyed();
}
public void notifyIncomingMessage(/*final */MessageConnection MCon)
{
if(MCon == notifyCon)
{
isNotify = true;
new PortListener(this);
}
}
public void PortListener()
{
try
{
if(notifyCon == null)
(notifyCon = (MessageConnection)Connector.open("sms://:16177")).setMessageListener(this);
return;
}
catch(IOException e)
{
}
}
public MessageConnection outNotifyCon()
{
return this.notifyCon;
}
and this is PortListener class:
Code:
public final class PortListener implements Runnable
{
private Thread trd = null;
private MessageConnection notifyCon;
private static MIDletName middd= null;
public PortListener(MIDletName midparam)
{
middd= midparam;
this.notifyCon = midparam.outNotifyCon();
try
{
if(trd == null)
{
trd = new Thread(this);
trd.start();
}
}
catch(Error er)
{}
MIDletName.isNotify = false;//isNotify is static,so access direct to it.otherwise,warning
public void messageReceivedHandler()
{
String receivedMessage = "";
try
{
Message RealCon;
if((RealCon = notifyCon.receive()) != null)
{
if ((RealCon instanceof TextMessage))
{
receivedMessage = ((TextMessage)RealCon).getPayloadText();
}
...
}
public void run()
{
try
{
synchronized(middd)
{
messageReceivedHandler();
}
}
finally
{
this.trd = null;
}
}
there is no problem in java based mobiles.i have problem in WindowsMobiles
i test this JAR in HTC Touch2 t3333(windows moblie 6.5) & HTC Cruise ( ? ).
with Esmertec Jbed 20090506.2.1 by Aqrab MIDletManager.
but i receive messages in inbox(not App).
by the way,in some day,i change part of code,:
Code:
public void pauseApp()
{
notifyPaused();
}
to this:
Code:
public void pauseApp()
{
notifyIncomingMessage(notifyCon)
notifyPaused();
}
and after that,i receive anyMessage,form Any Senders in my App!
i unistall it,and after some days,i install it again,but its not work!!!!
i test these ways to install MIDlet managers:
1-bluetooth CAB file
2-trasnfer CAb to mobile by ActiveSync
but there is no different!
1-how can i receive messages in my app,in WindowsMobile too?
2- these code snippeds are true ever?!
i see some another snipped code for listening,like this :
Code:
int i;
MessageConnection con;
String[] conList;
if ((conList = PushRegistry.listConnections(true)).length != 0)
for (i = conList.length - 1; i >= 0; i--)
try
{
(con = (MessageConnection)Connector.open(conList[i])).setMessageListener(this);
this.conz.addElement(con);
}
catch (SecurityException sex)
{
}
catch (IOException ioex)
{
}
else
for (i = (conList = PushRegistry.listConnections(false)).length - 1; i >= 0; i--)
try
{
(con = (MessageConnection)Connector.open(conList[i])).setMessageListener(this);
this.conz.addElement(con);
}
catch (SecurityException sex)
{
}
catch (IOException ioex)
{
}
and these for destryApp() :
Code:
if (prtl.conz != null) // prtl is instanse of PortListener ( above code )
while (!prtl.conz.isEmpty())
{
MessageConnection temp;
if (( temp = (MessageConnection)prtl.conz.firstElement()) != null)
try
{
temp.setMessageListener(null);
temp.close();
}
catch (Exception ex)
{
}
this.prtl.conz.removeElementAt(0);
}
whats different between these with my code that i said,and listen to port in 1 line! :
Code:
public void PortListener()
{
try
{
if(notifyCon == null)
(notifyCon = (MessageConnection)Connector.open("sms://:16177")).setMessageListener(this);
return;
}
catch(IOException e)
{
}
}
3-whats range of sopported ports in WindoesMobile?

[ROM][5.0.2][4 FEB]PAC MAN Rom Lollipop Unofficial[3.1][Single Sim]

Hello all i am just sharing this rom here all credits goes to moonlight​
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Note: Guys i will update unofficial builds soon after the official release
PAC-ROM OFFERS A UNIQUE CUSTOM ROM EXPERIENCE WITH OUR OWN TWEAKS AND OPTIONS,
INCLUDING ELEMENTS AND FEATURES FROM THE BEST ROMS OUT THERE.
WHY CHOOSE AMONG ROMS, WHEN YOU HAVE ALL-IN-ONE!
While we make every effort to test these builds as much as possible, we are not responsible for anything that may happen to your device.
We ask that you do your part to know your device and know how to recover from problems before you flash!
-Theme Engine
-Quick-Smart Pulldown
-Buttons
-Battery mods
-ClockColor options
-Statusbar clock customization + second + fonts
-Network traffic monitor
-Toast animations
-Listview animations
-Navigation bar dimensions
-Add Weather display to status bar header
-Overall Speed up system
-Amazing Battery Life
-Brand new music and audio fx app from cyanogen
-And many more MORE..​
Installation instructions:
Make sure you are on latest TWRP
Download: Deleted
Download PA Gapps
Full Wipe (only when coming from other ROM)
Flash ROM and Gapps
I am in no way responsible for anything that may happen to your phone! Flashing this is at your own risk.
Offcourse all credits for this ROM go to PAC MAN Team and Cyanogenmod for making this possible.
I am only the humble builder.
Happy Flashing!!
* Cyanogen Team
* AOKP Team
* Paranoid Android
* PAC-man Team
* SlimRoms
* RootBox
* Carbon ROM
* Vanir
* ChameleonOS
* Omnirom
* Paranoid SaberDroid
* Special thanks to all our Build Bot Providers (see Contributors list for all names)
* PAC Graphix Team - Graphics, logos and images (see Contributors list for all names)
* And of course, thank you for your love and support!​
XDAevDB Information
PAC lollipop for Falcon, ROM for the Moto G
Contributors
moonlight, pico hackr
ROM OS Version: 5.0.x Lollipop
ROM Kernel: Linux 3.4.x
ROM Firmware Required: unlocked bootloader
Version Information
Status: Stable
Current Beta Version: 3.1
screenshots
reserved
First!
Thanks for this
Sent from my XT1033 using XDA Premium 4 mobile app
waka waka
I can't wait for hopeful later on xt1031 support. Keep up the good work regardless
Pac Pop imo
@pico hackr Please remove download link. Our team doesn't allow public builds, until official nightlies rolling out. I don't get it why is so hard to take a look at the end of the build at the big red lines:
Code:
[COLOR="Red"][B] @echo -e ${CL_GRN}"================================================================================"${CL_RST}
@echo -e ""
@echo -e ${CL_RED}"===========================-To ALL THE XDA NOOBS!-=============================="${CL_RST}
@echo -e ${CL_RED}"=============================-PLEASE READ THIS!-================================"${CL_RST}
@echo -e ""
@echo -e ${CL_GRN}" Please remember that this source is currently for private builds ONLY!"${CL_RST}
@echo -e ""
@echo -e ${CL_GRN}" Public builds are NOT ALLOWED, all public builds will be removed!"${CL_RST}
@echo -e ""
@echo -e ${CL_GRN}" It will be welcomed after nightlies (5.0) begin. Thank you, the Developers."${CL_RST}
@echo -e ""
@echo -e ${CL_RED}"=============================-PLEASE READ THIS!-================================"${CL_RST}
@echo -e ${CL_RED}"===========================-To ALL THE XDA NOOBS!-=============================="${CL_RST}[/B][/COLOR]
BTW: The official nightlies comming soon.
Wechy77 said:
@pico hackr Please remove download link. Our team doesn't allow public builds, until official nightlies rolling out. I don't get it why is so hard to take a look at the end of the build at the big red lines:
Code:
[COLOR="Red"][B] @echo -e ${CL_GRN}"================================================================================"${CL_RST}
@echo -e ""
@echo -e ${CL_RED}"===========================-To ALL THE XDA NOOBS!-=============================="${CL_RST}
@echo -e ${CL_RED}"=============================-PLEASE READ THIS!-================================"${CL_RST}
@echo -e ""
@echo -e ${CL_GRN}" Please remember that this source is currently for private builds ONLY!"${CL_RST}
@echo -e ""
@echo -e ${CL_GRN}" Public builds are NOT ALLOWED, all public builds will be removed!"${CL_RST}
@echo -e ""
@echo -e ${CL_GRN}" It will be welcomed after nightlies (5.0) begin. Thank you, the Developers."${CL_RST}
@echo -e ""
@echo -e ${CL_RED}"=============================-PLEASE READ THIS!-================================"${CL_RST}
@echo -e ${CL_RED}"===========================-To ALL THE XDA NOOBS!-=============================="${CL_RST}[/B][/COLOR]
BTW: The official nightlies comming soon.
Click to expand...
Click to collapse
Deleted but i have seen lot of unofficial threads here on xda
1: http://forum.xda-developers.com/htc-one-s/development/rom-pac-rom-lollipop-unofficial-t3008738
2:http://forum.xda-developers.com/xperia-z2/orig-development/rom-pac-4-4-4-rc-1-t2862695
3:http://forum.xda-developers.com/moto-g-2014/development/rom-pac-rom-lp-alpha-1-t3013472
Guys i will update the unofficial builds soon after the official release
Is this works on cwm? thanks
Thread temp closed till the OFFICIAL builds are up and running, where the unofficial ones are agreed by the team
TEMP CLOSED

[ROM][5.0.2] PAC-MAN [UNOFFICIAL] [condor]

* * * * * * * * * Thread suspended * * * * * * * * * * * *
Sorry guys I have been completely stupid and mis understood the PAC-man rules about releasing public builds at this time.
There is some very plain and simple text at the end of each build stating the rules which I have read once, misunderstood and ignored since.
This is completely my mistake and I completely respect the work from the PAC-man team and any rules they place upon said work.
Apologises guys but we can look forward to the official release.
Could a mod please close the thread
* * * * * * * * * Thread suspended * * * * * * * * * * * *
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
This is an unofficial PAC MAN ROM build!
I am not good at designing OP's, so, lets keep this simple.
Installation Instructions:
1. Flash TWRP 2.8.5.0
2. Wipe the partitions (except system)
3. And flash the ZIP provided in this OP.
4. Reboot System and Done
BUGS:
R I L
Tell me
Downloads:
LINKS REMOVED
RECOVERY: forum.xda-developers.com/moto-e/orig-development/recovery-twrp-2-8-2-0-touch-recovery-t2971601
Sources: Same as cm-12.0 sources by percy_g2 with some minor changes done by me.
XDA:DevDB Information
PAC MAN ROM 5.0.2, ROM for the Moto E
Contributors
#buzz
ROM OS Version: 5.0.x Lollipop
ROM Kernel: Linux 3.4.x
ROM Firmware Required: TWRP 2.8.5.0
Based On: Paranoid, AOSP, CyanogenMod
Version Information
Status: Alpha
Created 2015-02-17
Last Updated 2015-02-18
downloading now[emoji1]
Downloading, tanks.
download link
Please fix the download links!
Mod Edit: Links removed @#buzz Mirror for the ROM. ����
Will provide a mirror now!
And bro, I hate Mega Upload coz it forces people to install its app and register themselves before downloading a file! Anyway, I will update it on main OP
Sent from my XT1022 using XDA Free mobile app
recovery flash
recovery should be flashed with fastboot commands right??
shaik baji said:
recovery should be flashed with fastboot commands right??
Click to expand...
Click to collapse
Fastboot
Or Use Flashify app from Google Play Flashify (for root users)
thanks for the rom, will wait till ril bug is fixed , keep up the good work.
Tried the rom @#buzz and thanks for it.[emoji106]
Smooth as cm12 and i fell Bugs might be mostly same as cm. I reported the vibrate on touch issue on cm while is also present in this.
But the music player fc is not in PAC.
Other issue I faced in PAC is while viewing recent apps first the screen is blank and after if u scroll up and down the recent cards appear. SS attached.
Also I have a ques. Is the PAC setting limited to what we just have now or it is still wip??
dhruvmu said:
Tried the rom @#buzz and thanks for it.[emoji106]
Smooth as cm12 and i fell Bugs might be mostly same as cm. I reported the vibrate on touch issue on cm while is also present in this.
But the music player fc is not in PAC.
Other issue I faced in PAC is while viewing recent apps first the screen is blank and after if u scroll up and down the recent cards appear. SS attached.
Also I have a ques. Is the PAC setting limited to what we just have now or it is still wip??View attachment 3171299
Click to expand...
Click to collapse
Nice Question Man!
But Actually all the Lollipop Roms Are under WIP stage... So dont worry... PAC has its Sources which are updated frequently a day.... So some patience will make everything possible... I though have come from CHD to Moto now.... I am really happy to have a shift from MTK to snap... Really Nice Developing out there.... Soon My contribution to this device will resume after my exams are over... So wait... PAC will update its resources to give you more features In Lollipop
Hope All Lollipop Roms Become stable SOON!
By the way, Nice work @#buzz ... Keep It UP !!!!
Regards
Andy
@#buzz Please remove download link. Our team doesn't allow public builds, until official nightlies rolling out. I don't get it why is so hard to take a look at the end of the build at the big red lines:
@ECHO -e ${CL_GRN}"================================================================================"${CL_RST}
@ECHO -e ""
@ECHO -e ${CL_RED}"===========================-To ALL THE XDA NOOBS!-=============================="${CL_RST}
@ECHO -e ${CL_RED}"=============================-PLEASE READ THIS!-================================"${CL_RST}
@ECHO -e ""
@ECHO -e ${CL_GRN}" Please remember that this source is currently for private builds ONLY!"${CL_RST}
@ECHO -e ""
@ECHO -e ${CL_GRN}" Public builds are NOT ALLOWED, all public builds will be removed!"${CL_RST}
@ECHO -e ""
@ECHO -e ${CL_GRN}" It will be welcomed after nightlies (5.0) begin. Thank you, the Developers."${CL_RST}
@ECHO -e ""
@ECHO -e ${CL_RED}"=============================-PLEASE READ THIS!-================================"${CL_RST}
@ECHO -e ${CL_RED}"===========================-To ALL THE XDA NOOBS!-=============================="${CL_RST}
ashwin007 said:
@#buzz Please remove download link. Our team doesn't allow public builds, until official nightlies rolling out. I don't get it why is so hard to take a look at the end of the build at the big red lines:
@ECHO -e ${CL_GRN}"================================================================================"${CL_RST}
@ECHO -e ""
@ECHO -e ${CL_RED}"===========================-To ALL THE XDA NOOBS!-=============================="${CL_RST}
@ECHO -e ${CL_RED}"=============================-PLEASE READ THIS!-================================"${CL_RST}
@ECHO -e ""
@ECHO -e ${CL_GRN}" Please remember that this source is currently for private builds ONLY!"${CL_RST}
@ECHO -e ""
@ECHO -e ${CL_GRN}" Public builds are NOT ALLOWED, all public builds will be removed!"${CL_RST}
@ECHO -e ""
@ECHO -e ${CL_GRN}" It will be welcomed after nightlies (5.0) begin. Thank you, the Developers."${CL_RST}
@ECHO -e ""
@ECHO -e ${CL_RED}"=============================-PLEASE READ THIS!-================================"${CL_RST}
@ECHO -e ${CL_RED}"===========================-To ALL THE XDA NOOBS!-=============================="${CL_RST}
Click to expand...
Click to collapse
Be happy dude Links Removed and Will be updated once PAC releases Official Nightlies :laugh:
Thread temporarily closed
OP can PM me if he wants to open the thread again when he has permission from PAC team to release public builds

[Completed] [Q] [help] Help needed in building pac 5.1 for unsupported device

ok, so im building pac rom 5.1 for lenovo a6000, as its not officially supported i had to make all the dependency files and stuff
theyre as follows -
Code:
[
{
"remote": "github",
"account": "bassface13",
"repository": "a6000",
"target_path": "device/lenovo/a6000",
"revision": "android_device_lenovo_a6000"
},
{
"remote": "github",
"account": "CyanogenMod",
"repository": "android_device_qcom_common",
"target_path": "device/qcom/common",
"revision": "cm-11.0"
},
{
"remote": "github",
"account": "bassface13",
"repository": "a6000",
"target_path": "kernel/lenovo/a6000",
"revision": "android_device_lenovo_a6000_kernel"
},
{
"remote": "github",
"account": "bassface13",
"repository": "a6000",
"target_path": "vendor/lenovo",
"revision": "android_device_lenovo_a6000_vendors"
}
]
i get the following error while building
Code:
[email protected]:~/pac-rom$ breakfast a6000
including vendor/cm/vendorsetup.sh
build/core/product_config.mk:239: *** ASSERTION FAILED: _include_stack should be empty here: build/core/config.mk device/lenovo/a6000/cm.mk . Stop.
Device a6000 not found. Attempting to retrieve device repository from Split-Screen Github (http://github.com/Split-Screen).
Repository for a6000 not found in the Split-Screen Github repository list. If this is in error, you may need to manually add it to your local_manifests/roomservice.xml.
build/core/product_config.mk:239: *** ASSERTION FAILED: _include_stack should be empty here: build/core/config.mk device/lenovo/a6000/cm.mk . Stop.
** Don't have a product spec for: 'cm_a6000'
** Do you have the right repo manifest?
help please :c
Bass_Face said:
ok, so im building pac rom 5.1 for lenovo a6000, as its not officially supported i had to make all the dependency files and stuff
theyre as follows -
i get the following error while building
help please :c
Click to expand...
Click to collapse
As per your post about building CM, I would recommend this thread for posting your question: http://forum.xda-developers.com/chef-central/android/guide-android-rom-development-t2814763
All the best
StrangerWeather said:
As per your post about building CM, I would recommend this thread for posting your question: http://forum.xda-developers.com/chef-central/android/guide-android-rom-development-t2814763
All the best
Click to expand...
Click to collapse
thanks will post there too, do u have any idea.?
Please refer to the information provided.
XDA Assist is for XDA Assist members to point you in the right direction which they already have.
You have opened several threads in the XDA Assist Forum generally on the same topic.
We are not here to give you the answers or do your research for you. Merely to guide new users to the right area within XDA to locate their information.
We suggest that you do that.
Thank you.
Edfunkycold
Have a great day!

[new update] Android Java source Protector: Full support Android 6.0 SDK

Java is a powerful programming language. It's very popular on the world.
But Java application is very easy to be decompile, so you could lose all your source code :
'Anti Java decompiler. Free' is the new solution for protecting your source code.
Google Store link: https://play.google.com/store/apps/details?id=com.tth.JavaProtector Free& easy to use:
- It helps to protects your Java application file (.apk ,.jar,...) from all decompiler/reversing tools, by obfuscating, encrypting, faking your original source files (.java files).
- It doesn't like Proguard. Proguard doesn't protected your source code files.
​
Please review our Demo Project (updated: Sep 10 2016)
Name: GreenSMS
Feature: block spam SMS for all device (include android 7-Nougat device)
Original Project Source: https://drive.google.com/open?id=0B0o4UmjDlk7ldWNrcWxiYnRsVTg
Protected Project Source: https://drive.google.com/open?id=0B0o4UmjDlk7lc1JyNWNCYU10TkU
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Welcome all questions from you, we will answer immediately.
Sounds very easy to write an extra method of decompiling. Wouldn't have mentioned it or added it in your source code.
blmvxer said:
Sounds very easy to write an extra method of decompiling. Wouldn't have mentioned it or added it in your source code.
Click to expand...
Click to collapse
This protection is made ​​on your source files (clear text) before compiling. So you totally control everything .
Nothing can be hidden from you. It's free app (no ad, no network permission) so you can try it by yourself.
Ps. if you set the high -level protection options , you will see there is no way to recover the original source code from the compiled file (apk,jar...).
Though it's slow I'm talking about brute force decompiling.
blmvxer said:
Though it's slow I'm talking about brute force decompiling.
Click to expand...
Click to collapse
Java application file (jar,apk...) is bytecode file. It has complete information for decompiling
without key (no need brute force )
Please try google "how to decompile an apk", you can see it so easy.
With a normal computer, you can decompiling almost of java application file in few minutes.
So trapping the decompiler tool is not easy.

			
				
to see the effective protection of Anti Java Decompiler, please try to decompile the App: 'Full Backup : SMS , Calls , Contacts ' .
This App allows everyone to decompile / reverse its source code, so be free to decompile it
'Full Backup : SMS , Calls , Contacts ' link: https://play.google.com/store/apps/details?id=com.tth.phoneclonelite
You'll get results like this.
https://drive.google.com/file/d/0BxfL8ZUrUYiGMmRIVmhFT2NGaFE/view

			
				
a sample of source protection:
- Input: sdk sample: Contact manager
- Output: a new project source. the new project has the same features but all source has been protected.
You can download source code of the new project (protectedContactManager.rar) at:
https://drive.google.com/file/d/0BxfL8ZUrUYiGSE4wSGRfOHZ6bVU/view?usp=sharing
*** apart of the new project:
public final class llll extends Activity
{
public static final String TAG = ˎˎˎˎˎˏˎˏˎ(166);
private Button ˎˎˎˎˎˎˏˏˏˎˏ;
private ListView ˎˎˎˎˎˎˏˏˏˏ;
private boolean ˎˎˎˎˎˏ;
private CheckBox ˎˎˎˎˎˎˏˏˏˏˎ;
@override
public void onCreate(Bundle ˎˎˎˎˎˎˎˎˏˏˏ)
{
Log.v( TAG, ˎˎˎˎˎˏˎˏˎ(213));
super.onCreate( ˎˎˎˎˎˎˎˎˏˏˏ);
setContentView( R.layout.contact_manager);
ˎˎˎˎˎˎˏˏˏˎˏ = (Button) findViewById( R.id.addContactButton);
ˎˎˎˎˎˎˏˏˏˏ = (ListView) findViewById( R.id.contactList);
ˎˎˎˎˎˎˏˏˏˏˎ = (CheckBox) findViewById( R.id.showInvisible);
ˎˎˎˎˎˏ = false;
ˎˎˎˎˎˎˏˏˏˏˎ.setChecked( ˎˎˎˎˎˏ);
ˎˎˎˎˎˎˏˏˏˎˏ.setOnClickListener( new View.OnClickListener( ) {
@override public void onClick(View ˎˎˎˎˎˎˎˏˎˏ) {
Log.d( TAG, ˎˎˎˎˎˏˎˏˎ(320));
ˎˎˎˎˎˎˏˏˏˎˎ( );
}
});
ˎˎˎˎˎˎˏˏˏˏˎ.setOnCheckedChangeListener( new OnCheckedChangeListener( ) {
@override public void onCheckedChanged(CompoundButton ˎˎˎˎˎˏˎˎ, boolean isChecked) {
Log.d( TAG, ˎˎˎˎˎˏˎˏˎ(367) + isChecked);
ˎˎˎˎˎˏ = isChecked;
ˎˎˎˎˎˎˏˏˏ( );
}
});
ˎˎˎˎˎˎˏˏˏ( );
}​
This is really powerfull ! Great work man , and THANK YOU FOR SHARING IT
P.S (..already clicked thanks on all posts , but they are still not enought )
retryer said:
This is really powerfull ! Great work man , and THANK YOU FOR SHARING IT
P.S (..already clicked thanks on all posts , but they are still not enought )
Click to expand...
Click to collapse
If you get any problems while using this app , please let me know .
Your comments will help me to improve this app
New update: 01/10/2015
- Fix bugs for some special source code style.
- Add new feature.
link on google store: https://play.google.com/store/apps/details?id=com.tth.JavaProtector
It's a great App. Thanks for share. :good:
- Don't use Proguard for your source after protecting by this Application. Proguard will obfuscate your source again by the normal way.
New version:
How to check the protecting
You can check the protecting by decompile your exported file:
1. Export your project to .apk, .jar... file by your IDE (Eclipse, Android studio ...).
example: output.apk, output.jar...
2. Download free decompiler tools:
- dex2jar tool for convert apk file to jar file.
https://github.com/pxb1988/dex2jar/releases
- jd-gui to view class file
https://code.google.com/p/innlab/downloads/detail?name=jd-gui-0.3.3.windows.zip
3. If your output file is .apk file
run command line: d2j-dex2jar <path of .apk file>
example: d2j-dex.jar output.apk
4. View source file:
run jd-gui.exe
select .jar file
view class & source
5. Assess quality protection by yourself
Please review source of KitKatSMSFilterOrg Project (which has been introduced in the above post)
You will get all project files, include 22 java source files:
lll.java
llll.java
lllll.java
lllllI.java
lllllI1.java
lllllII.java
lllllIJ.java
lllllIl.java
llllll.java
llllll1.java
llllllI.java
llllllJ.java
lllllll.java
›œ_.java
›¦œ.java
›O€.java
¦’.java
O›.java
_’.java
_o.java
áo.java
¦á.java​
You can compile and run it (please using Eclipse IDE).
Pm'd you.
Dri94 said:
Pm'd you.
Click to expand...
Click to collapse
I got your message. I will answer you in few minutes.

Categories

Resources