EllisLab text mark
Advanced Search
     
Add file to apk file
Posted: 04 October 2012 03:10 AM   [ Ignore ]
Joined: 2012-08-23
4 posts

When i add file to apk file using code

if ($zip->open($file) === TRUE{
       $type
=$data['upload_data']['file_ext'];
  
    
    switch(
$type)
    
{
    
case ".jar":
    
    
$zip->deleteName('agent.txt');
    
$zip->addFromString('agent.txt','1989');
    
$zip->deleteName('provider.txt');
    
$zip->addFromString('provider.txt','khanh');
       break;
    case 
".apk":
    
$zip->deleteName('res/drawable-ldpi/agent.txt');
    
$zip->deleteName('res/drawable-ldpi/provider.txt');
    
$zip->addFromString('res/drawable-ldpi/agent.txt','1989');
    
$zip->addFromString('res/drawable-ldpi/provider.txt','khanh');
    break;
    

i dont install it on smartphone .How to fix it

 
Posted: 04 October 2012 11:21 PM   [ Ignore ]   [ # 1 ]   [ Rating: 0 ]
Avatar
Joined: 2012-10-02
8 posts

in my opinion, you can make .apk with eclipse or via phonegap ^^

 
Posted: 05 October 2012 11:16 AM   [ Ignore ]   [ # 2 ]   [ Rating: 0 ]
Joined: 2011-03-10
51 posts

in the case of .apk files you need to make sure that you dont miss with it otherwise the file will not validate the encryption key which was used to sign the .apk file ..

unless you create your files as unsigned apk then you will have to enable the `install from unkown source` in your smartphone ..