lfc22
|
2017-02-11
, 07:48
|
Posts: 118 |
Thanked: 55 times |
Joined on Jul 2013
|
#131
|
The Following User Says Thank You to lfc22 For This Useful Post: | ||
|
2017-02-11
, 11:34
|
|
Posts: 166 |
Thanked: 454 times |
Joined on Apr 2015
@ Poland
|
#132
|
apkd-install app.apk
EXTERNAL_STORAGE=/sdcard
#!/bin/bash # Copyright 2013-2016 Myriad Group AG. All Rights Reserved. ####### 3D needs ######### EXTRA_FILES_3D=" lib/hw/gralloc.msm7x30.so " ####### CAMERA needs ######### EXTRA_FILES_CAMERA=" lib/hw/camera.semc.so " ####### HW CODECS needs ######### EXTRA_FILES_HWCODEC=" etc/media_codecs.xml etc/media_profiles.xml " ####### LINKING LOOP ######### NEEDED_EXTRA_FILES=" $EXTRA_FILES_3D $EXTRA_FILES_CAMERA $EXTRA_FILES_HWCODEC " for x in $NEEDED_EXTRA_FILES; do target=/system_jolla/$x link=$ANDROID_ROOT/${x/.msm7x30./.default.} ln -sf $target $link done # For camera socket mkdir -p /data/misc ln -s /data_jolla/misc/camera /data/misc/camera
The Following User Says Thank You to mp107 For This Useful Post: | ||
|
2017-02-11
, 17:29
|
Posts: 163 |
Thanked: 279 times |
Joined on Feb 2017
@ Tbilisi, Georgia (caucasus)
|
#133
|
|
2017-02-11
, 20:04
|
|
Posts: 411 |
Thanked: 1,105 times |
Joined on Jan 2010
@ Europe
|
#134
|
|
2017-02-11
, 20:14
|
Posts: 738 |
Thanked: 819 times |
Joined on Jan 2012
@ Berlin
|
#135
|
The Following 3 Users Say Thank You to cvp For This Useful Post: | ||
|
2017-02-11
, 23:01
|
Posts: 163 |
Thanked: 279 times |
Joined on Feb 2017
@ Tbilisi, Georgia (caucasus)
|
#136
|
@matemana: can you check sound/video for the apps i mentioned here http://talk.maemo.org/showpost.php?p...&postcount=128
The Following User Says Thank You to matemana For This Useful Post: | ||
|
2017-02-12
, 06:46
|
|
Posts: 411 |
Thanked: 1,105 times |
Joined on Jan 2010
@ Europe
|
#137
|
no your programs does not have sound. strabge thing is i installed NFS most wanted and it does have sound and works very well. i cant see difference between this and real android device gaming with nfs most wanted.i managed to install play store and voice assistant on nexus 5 too but it is not as good as in nexus 4. do not know why. chrome does not work. sound does not work in some apps. camera does not work in android apps.i have 0 problems with nexus 4.
|
2017-02-12
, 07:17
|
Posts: 163 |
Thanked: 279 times |
Joined on Feb 2017
@ Tbilisi, Georgia (caucasus)
|
#138
|
Interesting. Do you have the same behavior with Nexus 5, CM11? Can you do me a favor: On your Nexus 4 do a backup of your working platform_extraenvsetup.sh and use a complete reduced one like the one mp107 posted for OPX, and check the not well working apps again? Thank you
The Following User Says Thank You to matemana For This Useful Post: | ||
|
2017-02-12
, 09:41
|
Posts: 163 |
Thanked: 279 times |
Joined on Feb 2017
@ Tbilisi, Georgia (caucasus)
|
#139
|
Interesting. Do you have the same behavior with Nexus 5, CM11? Can you do me a favor: On your Nexus 4 do a backup of your working platform_extraenvsetup.sh and use a complete reduced one like the one mp107 posted for OPX, and check the not well working apps again? Thank you
#!/bin/bash # Copyright 2013-2016 Myriad Group AG. All Rights Reserved. ####### 3D needs ######### EXTRA_FILES_3D=" lib/hw/gralloc.msm8960.so " ####### CAMERA needs ######### EXTRA_FILES_CAMERA=" lib/hw/camera.mako.so " ####### HW CODECS needs ######### EXTRA_FILES_HWCODEC=" etc/media_codecs.xml etc/media_profiles.xml " ####### LINKING LOOP ######### NEEDED_EXTRA_FILES=" $EXTRA_FILES_3D $EXTRA_FILES_CAMERA $EXTRA_FILES_HWCODEC " for x in $NEEDED_EXTRA_FILES; do target=/system_jolla/$x link=$ANDROID_ROOT/${x/.msm8960./.default.} ln -sf $target $link done # For camera socket mkdir -p /data/misc ln -s /data_jolla/misc/camera /data/misc/camera
|
2017-02-12
, 10:01
|
|
Posts: 411 |
Thanked: 1,105 times |
Joined on Jan 2010
@ Europe
|
#140
|
Well now i am lost.
I used this sh script in my nexus 4 and tux rider worked and had sound, google chrome worked, opened youtube in google chrome and it played video without problem, also had sound.
Google camera works too. takes pictures, takes video without problems.
HTML Code:#!/bin/bash # Copyright 2013-2016 Myriad Group AG. All Rights Reserved. ####### 3D needs ######### EXTRA_FILES_3D=" lib/hw/gralloc.msm8960.so " ####### CAMERA needs ######### EXTRA_FILES_CAMERA=" lib/hw/camera.mako.so " ####### HW CODECS needs ######### EXTRA_FILES_HWCODEC=" etc/media_codecs.xml etc/media_profiles.xml " ####### LINKING LOOP ######### NEEDED_EXTRA_FILES=" $EXTRA_FILES_3D $EXTRA_FILES_CAMERA $EXTRA_FILES_HWCODEC " for x in $NEEDED_EXTRA_FILES; do target=/system_jolla/$x link=$ANDROID_ROOT/${x/.msm8960./.default.} ln -sf $target $link done # For camera socket mkdir -p /data/misc ln -s /data_jolla/misc/camera /data/misc/camera