[WIP] MIUI Port -HELP NEEDED-

SWEATTAIMI

Senior Member
Oct 19, 2010
2,051
379
0
W4ZT3D
Three words...

MDPI WONT WORK

Sent from my LG-P500 using Tapatalk
hey how about ldpi :D that worked x)

---------- Post added at 02:37 PM ---------- Previous post was at 02:36 PM ----------

Three words...

MDPI WONT WORK

Sent from my LG-P500 using Tapatalk
HDPI apps work, partly with our phone's sometimes we need to convert em and a bit recode em
 

DaXmax

Senior Member
Sep 16, 2008
10,846
9,928
0
Singapore
hey how about ldpi :D that worked x)

---------- Post added at 02:37 PM ---------- Previous post was at 02:36 PM ----------



HDPI apps work, partly with our phone's sometimes we need to convert em and a bit recode em
Then u can start helping the chinese dev...

Sent from my LG-P500 using Tapatalk
 

sweetnsour

Senior Member
May 11, 2011
2,629
2,465
0
whats up with the "it doesnt work on our phone because its mdpi"?
the greenmods team got it working for the galaxy 3 and its ldpi
 

iDani3l

Member
Jul 10, 2011
40
2
0
whats up with the "it doesnt work on our phone because its mdpi"?
the greenmods team got it working for the galaxy 3 and its ldpi
Agreed but as you can see there is no real 'team' behind this which makes it harder for SWEAT to get everything to work. Although I appreciate the work SWEAT is doing I think it won't be finished due to the low-experience of the developer and the organisation behind it.

Sent from my phone.
 

SWEATTAIMI

Senior Member
Oct 19, 2010
2,051
379
0
W4ZT3D
Agreed but as you can see there is no real 'team' behind this which makes it harder for SWEAT to get everything to work. Although I appreciate the work SWEAT is doing I think it won't be finished due to the low-experience of the developer and the organisation behind it.

Sent from my phone.
I need to sit down and take a look at the logcat but first study Japanese

The Bad Times Returns. Soon Its Me Left, I Cant Stop Em :/
 

thachtunganh

Senior Member
Mar 19, 2011
1,695
1,901
0
Hà Nội - Hanoi
Code:
W/PackageManager( 3955): Unknown permission android.permission.ADD_SYSTEM_SERVICE in package com.android.phone
W/PackageManager( 3955): Unknown permission android.permission.WRITE_INTERNAL_STORAGE in package com.miui.player
W/PackageManager( 3955): Not granting permission android.permission.SEND_DOWNLOAD_COMPLETED_INTENTS to package com.android.browser (protectionLevel=2 flags=0x9be45)
W/PackageManager( 3955): Unknown permission com.google.android.googleapps.permission.GOOGLE_AUTH.panoramio in package com.google.android.apps.uploader
W/PackageManager( 3955): Not granting permission android.permission.SEND_DOWNLOAD_COMPLETED_INTENTS to package com.android.vending (protectionLevel=2 flags=0xabe45)
W/PackageManager( 3955): Unknown permission android.permission.SEND in package com.android.vending
W/PackageManager( 3955): Unknown permission com.google.android.voicesearch.AUDIO_FILE_ACCESS in package com.google.android.gm
W/PackageManager( 3955): Unknown permission android.permission.READ_OWNER_DATA in package com.android.email
W/PackageManager( 3955): Not granting permission android.permission.DEVICE_POWER to package com.android.deskclock (protectionLevel=2 flags=0x8be45)
First 10 Lines in the logcat :D

Code:
I/UsbService( 4085): This kernel does not have USB configuration switch support
I/UsbService( 4085): Trying legacy USB configuration switch support
Line 427 and 428

Now we are having 8 Apps don't work ( actually it's 10 : Launcher2.apk :D , SystemUI.apk )
 

SWEATTAIMI

Senior Member
Oct 19, 2010
2,051
379
0
W4ZT3D
Code:
W/PackageManager( 3955): Unknown permission android.permission.ADD_SYSTEM_SERVICE in package com.android.phone
W/PackageManager( 3955): Unknown permission android.permission.WRITE_INTERNAL_STORAGE in package com.miui.player
W/PackageManager( 3955): Not granting permission android.permission.SEND_DOWNLOAD_COMPLETED_INTENTS to package com.android.browser (protectionLevel=2 flags=0x9be45)
W/PackageManager( 3955): Unknown permission com.google.android.googleapps.permission.GOOGLE_AUTH.panoramio in package com.google.android.apps.uploader
W/PackageManager( 3955): Not granting permission android.permission.SEND_DOWNLOAD_COMPLETED_INTENTS to package com.android.vending (protectionLevel=2 flags=0xabe45)
W/PackageManager( 3955): Unknown permission android.permission.SEND in package com.android.vending
W/PackageManager( 3955): Unknown permission com.google.android.voicesearch.AUDIO_FILE_ACCESS in package com.google.android.gm
W/PackageManager( 3955): Unknown permission android.permission.READ_OWNER_DATA in package com.android.email
W/PackageManager( 3955): Not granting permission android.permission.DEVICE_POWER to package com.android.deskclock (protectionLevel=2 flags=0x8be45)
First 10 Lines in the logcat :D

Code:
I/UsbService( 4085): This kernel does not have USB configuration switch support
I/UsbService( 4085): Trying legacy USB configuration switch support
Line 427 and 428

Now we are having 8 Apps don't work ( actually it's 10 : Launcher2.apk :D , SystemUI.apk )
Well thats maybe what i have been told damn . That guy may told the right stuff also its a permission problem not framework

The Bad Times Returns. Soon Its Me Left, I Cant Stop Em :/
 

thachtunganh

Senior Member
Mar 19, 2011
1,695
1,901
0
Hà Nội - Hanoi
Well thats maybe what i have been told damn . That guy may told the right stuff also its a permission problem not framework

The Bad Times Returns. Soon Its Me Left, I Cant Stop Em :/
So , how can we give these apps the right permission :confused:
And , have you ever see FC error of Launcher2 when your phone booted up , i haven't seen the FC of Launcher2 :D
 

lupohirp

Inactive Recognized Developer
Jul 27, 2010
977
7,399
0
Avellino
SWEITTAMI try to set the permissions that you need in androidmanifest.xml of packagemanager or other apk

here an example like to do this

Code:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.android.app.myapp" >
    <uses-permission android:name="#SET THE PERMISSION HERE" />
    ...
</manifest>
try if this fix!;)
 
Last edited:
  • Like
Reactions: SWEATTAIMI

RockR172

Senior Member
Jun 12, 2011
1,421
1,503
0
SWEITTAMI try to set the permissions that you need in androidmanifest.xml of packagemanager or other apk

here an example like to do this

Code:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.android.app.myapp" >
    <uses-permission android:name="#SET THE PERMISSION HERE" />
    ...
</manifest>
try if this fix!;)
Where is the package manager.apk located?? N yea, does the editing need to be in all those apks which dont hav permissions??

--RockR172--
 

SWEATTAIMI

Senior Member
Oct 19, 2010
2,051
379
0
W4ZT3D
SWEITTAMI try to set the permissions that you need in androidmanifest.xml of packagemanager or other apk

here an example like to do this

Code:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.android.app.myapp" >
    <uses-permission android:name="#SET THE PERMISSION HERE" />
    ...
</manifest>
try if this fix!;)
Will do that when i come home from dinner :)

The Bad Times Returns. Soon Its Me Left, I Cant Stop Em :/