Active Topics

 



Notices


Reply
Thread Tools
Moderator | Posts: 6,215 | Thanked: 6,400 times | Joined on Nov 2011
#431
Originally Posted by kpblxa View Post
I've updated to the latest version of apkenv-qml - the icon for games remain on my desktop and are not in application to be removed or accessed. how do i get rid of them?

thanks
the .desktop files are located in /home/user/.local/share/applications/
 
Posts: 93 | Thanked: 43 times | Joined on Aug 2012
#432
thanks

./10chars
 
Posts: 147 | Thanked: 33 times | Joined on Mar 2012 @ Lebanon
#433
i would like to know if all application will be supported not only angry birds !!
 
Moderator | Posts: 6,215 | Thanked: 6,400 times | Joined on Nov 2011
#434
Originally Posted by lebanez View Post
i would like to know if all application will be supported not only angry birds !!
No...
10chars
 

The Following User Says Thank You to thedead1440 For This Useful Post:
Posts: 41 | Thanked: 5 times | Joined on Oct 2012
#435
i can't open sh Androidgames.sh why !! Please someone can tell me ?
 
Posts: 149 | Thanked: 34 times | Joined on Dec 2011
#436
Originally Posted by nisheet View Post
@RafaelVlmendes----bro.i tried to run sh Androidgames.sh in my n900 from the package you provided but got error saying line-1 devel-su not found....what to do now?????
If u have Nokia N900 download and install apkenv0.0.1 for Freemantle and apkenv1.
Unrar apkenv1 in MyDocs. Example: MyDocs/Apkenv
In your folder Apkenv need do so:
MyDocs/ Apkenv/Packages
MyDocs/Apkenv/AndroidGames

U need be admin in ur terminal and when u write sh AndroidGames.sh will be create and chmod foldes.
If u can show me pictures with ur problem.


I found the problem.. In few times ill make new packages.

Last edited by RafaelVlmendes; 2012-10-27 at 13:28.
 
Posts: 149 | Thanked: 34 times | Joined on Dec 2011
#437
Originally Posted by Samir_123455 View Post
i can't open sh Androidgames.sh why !! Please someone can tell me ?
What ur device? The N900 i ill create new tutorial in few times
 
Posts: 120 | Thanked: 83 times | Joined on May 2012
#438
For everyone who interested.
New version of script to launch .apk's with config auto save/load feature. I got rid of unnecessary file operations - now config remains in /home/user/.apkenv untill different .apk is loaded. All operations with config files are made before loading .apk. Also added mechanism to search for .apk's in specific folder (apk_dir variable). As in previous version, apkenv directory is stored in apkenv_dir.
Code:
#!/bin/sh

apkenv_dir="/opt/apkenv"
apkenvwrp_dir="/home/user/.apkenvwrp"
apk_dir="/home/user/MyDocs/apk"

process_backup() {
	if [ -f $apkenvwrp_dir/current_apk.save ]; then
		save_name=$(cat "$apkenvwrp_dir/current_apk.save")
		
		if [ $1 != $save_name ]; then
			cp -rf /home/user/.apkenv/. $apkenvwrp_dir/$save_name/
			rm -rf /home/user/.apkenv/*
			
			if [ -d $apkenvwrp_dir/$1 ]; then
				cp -rf $apkenvwrp_dir/$1/. /home/user/.apkenv/
			fi
			
			echo $1 > $apkenvwrp_dir/current_apk.save
		fi
	else
		mkdir -p $apkenvwrp_dir
		echo $1 > $apkenvwrp_dir/current_apk.save
	fi
}

if [ ! $1 ]; then
	echo "Usage: apkenvwrp.sh application.apk"
	echo "Do not run under root!"
	exit 0
fi

if [ $(whoami) != "user" ]; then
	echo "User rights required!"
	exit 0
fi

if [ -f $1 ]; then
	apk_path=$(readlink -f "$1")
else
	if [ -f $apk_dir/$1 ]; then
		apk_path=$apk_dir/$1
	else
		echo "File '"$1"' doesn't exist!"
		exit 0
	fi
fi

backup_name=$(basename "$1" ".apk")

process_backup $backup_name

cd $apkenv_dir

./apkenv $apk_path

exit 0
 

The Following 6 Users Say Thank You to PIDk For This Useful Post:
Posts: 3 | Thanked: 0 times | Joined on Sep 2012
#439
how do update the library via TERMINAL
Thanks in advance
 
Hariainm's Avatar
Posts: 485 | Thanked: 708 times | Joined on Feb 2010 @ Galiza
#440
ok, people here are stupid
__________________
Adrian Filgueira, @hariainm
 

The Following 4 Users Say Thank You to Hariainm For This Useful Post:
Reply

Tags
android, emu_layer, new_whazapp, orphanenv, sfdroid, thp ole ole ole, thp's up, y u disobey thp


 
Forum Jump


All times are GMT. The time now is 03:49.