I was going through installed apps in my moto g dual sim asia variant when i came across this
PFA screenshots
adam app uses a hell lot of device features
does anyone else have it in their moto g too?
viv_jen said:
I was going through installed apps in my moto g dual sim asia variant when i came across this
PFA screenshots
adam app uses a hell lot of device features
does anyone else have it in their moto g too?
Click to expand...
Click to collapse
It's not installed on XT1032 EU or US. If you are concerned about it, you could try disabling it. Someone on the official Motorola forum might explain what it is:
https://forums.motorola.com/hives/3ba9b2429c/posts​
I have it too, AsiaRetail dual (XT1033). Appears to be a modem service for Motorola. The manifest is below.
Code:
<manifest package="com.motorola.adamsvc" versionCode="19" sharedUserId="com.motorola.uid.modemservice" versionName="4.4.2-14">
<uses-sdk minSdkVersion="19" targetSdkVersion="19">
</uses-sdk>
<permission label="resource_id:0x7f040002" protectionLevel="3" description="resource_id:0x7f040001" permissionGroup="android.permission-group.SYSTEM_TOOLS" name="com.motorola.permission.ACCESS_ADAM">
</permission>
<permission label="resource_id:0x7f040004" protectionLevel="3" description="resource_id:0x7f040003" permissionGroup="android.permission-group.SYSTEM_TOOLS" name="com.motorola.permission.MODIFY_ADAM">
</permission>
<application allowBackup="false" process="com.motorola.modemservice" icon="resource_id:0x7f020000" label="resource_id:0x7f040000">
<uses-library name="com.motorola.adam">
</uses-library>
<provider exported="true" readPermission="com.motorola.permission.ACCESS_ADAM" writePermission="com.motorola.permission.MODIFY_ADAM" authorities="adam" multiprocess="false" name="AdamProvider">
</provider>
<service exported="true" permission="com.motorola.permission.MODIFY_ADAM" name=".AdamService">
<intent-filter>
<action name="com.motorola.adam.action.LTE_AGG">
</action>
<action name="com.motorola.adam.action.WIFI_AGG">
</action>
<action name="com.motorola.adam.action.SCHEDULE_AGG">
</action>
</intent-filter>
</service>
</application>
</manifest>
eastdata said:
I have it too, AsiaRetail dual (XT1033). Appears to be a modem service for Motorola. The manifest is below.
Code:
<manifest package="com.motorola.adamsvc" versionCode="19" sharedUserId="com.motorola.uid.modemservice" versionName="4.4.2-14">
<uses-sdk minSdkVersion="19" targetSdkVersion="19">
</uses-sdk>
<permission label="resource_id:0x7f040002" protectionLevel="3" description="resource_id:0x7f040001" permissionGroup="android.permission-group.SYSTEM_TOOLS" name="com.motorola.permission.ACCESS_ADAM">
</permission>
<permission label="resource_id:0x7f040004" protectionLevel="3" description="resource_id:0x7f040003" permissionGroup="android.permission-group.SYSTEM_TOOLS" name="com.motorola.permission.MODIFY_ADAM">
</permission>
<application allowBackup="false" process="com.motorola.modemservice" icon="resource_id:0x7f020000" label="resource_id:0x7f040000">
<uses-library name="com.motorola.adam">
</uses-library>
<provider exported="true" readPermission="com.motorola.permission.ACCESS_ADAM" writePermission="com.motorola.permission.MODIFY_ADAM" authorities="adam" multiprocess="false" name="AdamProvider">
</provider>
<service exported="true" permission="com.motorola.permission.MODIFY_ADAM" name=".AdamService">
<intent-filter>
<action name="com.motorola.adam.action.LTE_AGG">
</action>
<action name="com.motorola.adam.action.WIFI_AGG">
</action>
<action name="com.motorola.adam.action.SCHEDULE_AGG">
</action>
</intent-filter>
</service>
</application>
</manifest>
Click to expand...
Click to collapse
why on earth would a modem driver/app need so many permissions for so many things???
Bump
I have a Republic Wireless Moto X, and I have this too. I did download my kitkat package from an alternative source. I didn't get it OTA. Did you update your Moto G OTA, did it come preinstalled with KitKat, or did you get the package from an alternate source?
chaddesch said:
I have a Republic Wireless Moto X, and I have this too. I did download my kitkat package from an alternative source. I didn't get it OTA. Did you update your Moto G OTA, did it come preinstalled with KitKat, or did you get the package from an alternate source?
Click to expand...
Click to collapse
From Moto -
Adam is part of a diagnostic tool we use in pre-production software builds for networking quality. It was left in a few consumer builds but it's disabled. It doesn't collect or send any data so it is safe to ignore.
Click to expand...
Click to collapse
https://forums.motorola.com/posts/6161232a23?commentId=777991#777991
It's was on my European XT1032 after the initial KK OTA, 2nd minor OTA removed it.
Related
i tried to google a lot about this but dint get any success though got a lil info about what all i need... but can you people help me out... ?
I want to learn to create an application...
basically I want to create a launcher so how should i do it... or where to start from ?...
Can some one please provide a TUT or a GUIDE which i can refer too..?
also a guide for porting compability... of app from only 1 phone to another will do for me... Please help... thank you...
NEWBIE
DEVICE - ACE PLUS GT-S7500
ROM - CM 10 BY THE WHISP
MODS - A FEW...
wanna learn sumthing new each day
OX Mobile Spy
I also have this same dilemma, I'm still, I hope the problem as soon as possible to solve.
Is there no 1 to help us out here ?
NEWBIE
DEVICE - ACE PLUS GT-S7500
ROM - CM 10 BY THE WHISP
MODS - A FEW...
wanna learn sumthing new each day
Launcher Guide
i guess this may help you :highfive:
Next : code to make your own launcher... :highfive:
for guide follow video ;
Code:
<activity
android:label="@string/app_name"
android:name=".Putyourclassthatyouwanttolaunchhere"
>
<intent-filter >
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter >
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.HOME" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
CODE HAS BEEN REWORKED SO THAT IT WILL NOT FORCE CLOSE
Hi everybody,
a week ago, I started to try to port Firefox OS on our device. I download everything, and I follow this guide. The problem is there. I use this manifest for falcon :
Code:
<?xml version="1.0" ?><manifest>
<include name="base-kk.xml"/>
<default remote="caf" revision="refs/tags/android-4.4.2_r1" sync-j="4"/>
<remote fetch="git://github.com/CyanogenMod/" name="cm"/>
<!-- Falcon specific things -->
<project name="android_device_qcom_common" path="device/qcom/common" remote="cm" revision="cm-11.0"/>
<project name="android_device_motorola_qcom-common" path="device/motorola/qcom-common" remote="cm" revision="cm-11.0"/>
<project name="android_device_motorola_falcon" path="device/motorola/falcon" remote="cm" revision="cm-11.0"/>
<project name="android_kernel_motorola_msm8226" path="kernel/motorola/msm8226" remote="cm" revision="cm-11.0"/>
<project name="android_device_motorola_msm8226-common" path="device/motorola/msm8226-common" remote="cm" revision="cm-11.0"/>
<project name="android_hardware_qcom_display-caf-new" path="hardware/qcom/display-caf-new" remote="cm" revision="cm-11.0"/>
<project name="android_hardware_qcom_media-caf-new" path="hardware/qcom/media-caf-new" remote="cm" revision="cm-11.0"/>
<project name="android_hardware_qcom_fm" path="hardware/qcom/fm" remote="cm" revision="cm-11.0"/>
<project name="platform_system_nfcd" path="system/nfcd" remote="b2g" revision="master"/>
</manifest>
Which is pretty strange. And the next parts failed ... I build boot.img ... Adapted config.sh BUT nothing works well !
The problem is the manifest .. so can anybody help my to build a new one ?
I thinking about using CyanogenMod's Github ! Nope ?
UPDATE :
Code:
<?xml version="1.0" ?><manifest>
<include name="base-kk.xml"/>
<default remote="caf" revision="refs/tags/android-4.4.2_r1" sync-j="4"/>
<remote fetch="git://github.com/CyanogenMod" name="cm"/>
<!-- Falcon specific things -->
<project name="android_device_motorola_falcon" path="device/motorola/falcon" remote="cm" revision="cm-11.0"/>
<project name="device/generic/armv7-a-neon" path="device/generic/armv7-a-neon"/>
<project name="android_kernel_motorola_msm8226" path="hardware/qcom/msm8226" remote="cm" revision="cm-11.0"/>
<project name="platform/external/libnfc-nci" path="external/libnfc-nci"/>
<project name="platform/external/wpa_supplicant_8" path="external/wpa_supplicant_8"/>
<project name="platform/hardware/broadcom/wlan" path="hardware/broadcom/wlan"/>
<project name="android_hardware_qcom_audio-caf" path="hardware/qcom/audio" remote="cm" revision="cm-11.0"/>
<project name="platform/hardware/qcom/camera" path="hardware/qcom/camera"/>
<project name="android_hardware_qcom_display-caf-new" path="hardware/qcom/display" remote="cm" revision="cm-11.0"/>
<project name="platform/hardware/qcom/keymaster" path="hardware/qcom/keymaster"/>
<project name="android_hardware_qcom_media-caf-new" path="hardware/qcom/media" remote="cm" revision="cm-11.0"/>
<project name="platform/hardware/qcom/power" path="hardware/qcom/power"/>
<project name="platform/hardware/qcom/sensors" path="hardware/qcom/sensors"/>
<project name="platform/hardware/qcom/wlan" path="hardware/qcom/wlan"/>
<project name="platform/hardware/ril" path="hardware/ril"/>
<project name="platform_system_nfcd" path="system/nfcd" remote="b2g" revision="master"/>
</manifest>
I made that, what do you thnk about it ?
Thanks you sooooooooooooooooo much !
PS : Sorry for my bad english
P-PS : If this project work great ... I would create A NIGHTLY BUILD of Firefox Os on Moto G (XT1032)
Building
I've never builded (but tried to),but i have some clues
i assume u followed this link to build
https://developer.mozilla.org/en-US/Firefox_OS/Porting
You can ask some questions here,maybe they will know
https://groups.google.com/forum/#!forum/mozilla.dev.b2g
This guide for manifest
http://forum.xda-developers.com/showpost.php?p=40003302&postcount=2
Anyway way to go and best of luck!
I've never builded (but tried to),but i have some clues
i assume u followed this link to build
https://developer.mozilla.org/en-US/Firefox_OS/Porting
You can ask some questions here,maybe they will know
https://groups.google.com/forum/#!forum/mozilla.dev.b2g
This guide for manifest
http://forum.xda-developers.com/show...02&postcount=2
Anyway way to go and best of luck!
Click to expand...
Click to collapse
I know those things but thank you very much guy
That learn me how to create a manifest, wich isn't a problem, the exact problem is : wich files go where, and wich files are useless ! I thinking about managing every Cynaogenmod code.
What do you think about it ?
xmattjus said:
Try to put those https://github.com/razrqcom-dev-team/android_local_razrqcom in the .repo/local_manifests folder. Particularly you need the vendor.xml file. For what I understood while building anything from sources you can't put all the repos you need in a single xml file.
I hope you understand what I mean.. xD
Click to expand...
Click to collapse
Look at this ! The manifest is very particular :/ I'm inspiratting by the Nexus 5's one.
There aren't like the razrqcom-dev-team's ones.
Thanks for you reply !
Hey guys!
I've been seaching now for some time in order to find a ready-to-build source tree for my GT-I8262. I found several entries on github but unfortunately I got compilation errors for all of them. The most promising one was the approach of ankur850 which he explained himself here.
In order to get rid of some of the errors, I changed the following points in the .repo/local_manifests/roomservice.xml:
Inserted remove-project in order to resolve the conflict with the existing repository by Cyanogenmod.
Changed the path kernel/samsung/arubaslim to kernel/samsung/msm7x27a
Removed the revision attribute for those repositories having a later branch (since I tried to build cm-11.0)
resulting in the following xml:
Code:
<?xml version="1.0" encoding="UTF-8"?>
<manifest>
<project name="ankur850/android_device_samsung_arubaslim" path="device/samsung/arubaslim" remote="github" />
<project name="ankur850/android_vendor_qcom_msm7x27a" path="vendor/qcom/msm7x27a" remote="github" revision="cm-10.2" />
<project name="ankur850/android_device_qcom_msm7x27a" path="device/qcom/msm7x27a" remote="github" revision="cm-10.2" />
<project name="ankur850/android_vendor_samsung_arubaslim" path="vendor/samsung/arubaslim" remote="github" revision="cm-10.2" />
<project name="ankur850/android_hardware_qcom_display-legacy" path="hardware/qcom/display-legacy" remote="github" revision="jellybean-mr2" />
<remove-project name="CyanogenMod/android_hardware_qcom_audio-caf" revision="cm-10.2" />
<project name="ankur850/android_hardware_qcom_audio-caf" path="hardware/qcom/audio-caf" remote="github" revision="cm-10.2" />
<project name="ankur850/android_kernel_samsung_msm7x27a" path="kernel/samsung/msm7x27a" remote="github" />
</manifest>
When compiling (brunch arubaslim), I get the following error - which seems to be related to the repository:
Code:
make: *** No rule to make target `frameworks/base/data/etc/com.stericsson.hardware.fm.receiver.xml', needed by `~/android/system/out/target/product/arubaslim/system/etc/permissions/com.stericsson.hardware.fm.receiver.xml'. Stop.
I would appreciate very much if someone could point a working CM11 (if possible CM12) source tree out to me (or even help me to build with this one).
@admin: If a forum moderator/admin happens to be reading this, I would appreciate very much if you could integrate an overview for source trees like you did for ROMs and kernels.
Many thanks!
There is no com.stericsson.hardware.fm.receiver.xml
In framework/base/data/etc as I recall. Check again if its not there than there is no rule to make it.
Y300-0100 said:
There is no com.stericsson.hardware.fm.receiver.xml
In framework/base/data/etc as I recall. Check again if its not there than there is no rule to make it.
Click to expand...
Click to collapse
Thanks for your quick reply!
I searched the whole android repository using grep -r com.stericsson.hardware.fm.receiver.xml device hardware kernel vendor and could only find an entry in device/samsung/arubaslim/device_arubaslim.mk. What should I do now? Should I just comment this line and try to run over it? Will this cause reduced functionality?
Inperpetuammemoriam said:
Thanks for your quick reply!
I searched the whole android repository using grep -r com.stericsson.hardware.fm.receiver.xml device hardware kernel vendor and could only find an entry in device/samsung/arubaslim/device_arubaslim.mk. What should I do now? Should I just comment this line and try to run over it? Will this cause reduced functionality?
Click to expand...
Click to collapse
https://github.com/Y300-0100/android_device_huawei_u8833/blob/caf/u8833.mk#L62
Maybe it's not needed at all or it's proprietary file from stock but I doubt that.
All you need is proper packages.
Y300-0100 said:
https://github.com/Y300-0100/android_device_huawei_u8833/blob/caf/u8833.mk#L62
Maybe it's not needed at all or it's proprietary file from stock but I doubt that.
All you need is proper packages.
Click to expand...
Click to collapse
You might be right. This section of the repository has been changed between cm-10.2 and cm-11.0, so that this file doesn't exist anymore. As grep -r com.stericsson.hardware.fm.receiver frameworks doesn't return any results, I suppose that this file has become obsolete. Because of that - I don't like to say this - I think the maintainer has abandoned his repository during the port to CM11.
Do you know if there is a more up-to-date repository for this device? I can't believe that the uploaded CM12 builds just pop out of nowhere...
There is application in Google Play. But even if application install from Google Play and run , whatever is displayed only test bunner.
My project`s files:
Manifest.xml:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android=url *
package="com.denis1993.xxx_pc.calculator" >
<application
android:allowBackup="true"
android:icon="@mipmap/aaa"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<meta-data android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version"/>
<activity android:name=".MainActivity"
android:windowSoftInputMode="stateAlwaysHidden">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name="com.google.android.gms.ads.AdActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"/>
</application>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.INTERNET"/>
</manifest>
activity_main.xml:
xmlns:ads=url
...
<com.google.android.gms.ads.AdView
android:id="@+id/adView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_alignParentBottom="true"
ads:adSize="BANNER"
ads:adUnitId="@string/banner_ad_unit_id">
</com.google.android.gms.ads.AdView>
bulid.grandle:
...
compile 'com.google.android.gms: play-services-ads:8.3.0'
...
string.xml:
<resources>
<string name="app_name">Calculator</string>
<string name="banner_ad_unit_id">ca-app-pub-7912591647703703/89855644</string>
</resources>
main_activity.java:
import com.google.android.gms.ads.AdRequest;
import com.google.android.gms.ads.AdView;
....
AdView mAdView = (AdView) findViewById(R.id.adView);
AdRequest adRequest = new AdRequest.Builder().build();
mAdView.loadAd(adRequest);
There are listed only part of code, which I use for add advertising from Admob
*url, because site doesnot give me real url
XDA Visitor said:
There is application in Google Play. But even if application install from Google Play and run , whatever is displayed only test bunner.
My project`s files:
Manifest.xml:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android=url *
package="com.denis1993.xxx_pc.calculator" >
<application
android:allowBackup="true"
android:icon="@mipmap/aaa"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<meta-data android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version"/>
<activity android:name=".MainActivity"
android:windowSoftInputMode="stateAlwaysHidden">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name="com.google.android.gms.ads.AdActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"/>
</application>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.INTERNET"/>
</manifest>
activity_main.xml:
xmlns:ads=url
...
<com.google.android.gms.ads.AdView
android:id="@+id/adView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_alignParentBottom="true"
ads:adSize="BANNER"
ads:adUnitId="@string/banner_ad_unit_id">
</com.google.android.gms.ads.AdView>
bulid.grandle:
...
compile 'com.google.android.gms: play-services-ads:8.3.0'
...
string.xml:
<resources>
<string name="app_name">Calculator</string>
<string name="banner_ad_unit_id">ca-app-pub-7912591647703703/89855644</string>
</resources>
main_activity.java:
import com.google.android.gms.ads.AdRequest;
import com.google.android.gms.ads.AdView;
....
AdView mAdView = (AdView) findViewById(R.id.adView);
AdRequest adRequest = new AdRequest.Builder().build();
mAdView.loadAd(adRequest);
There are listed only part of code, which I use for add advertising from Admob
*url, because site doesnot give me real url
Click to expand...
Click to collapse
Hello, and welcome to XDA!
A good place to ask this (if I understand the question properly as your own app), is in this thread:
> App Development Forums > Coding Discussion, Q&A, and Educational Resources > Java for Android App Development > [Q] How to insert admob in app help me
Please note, you will need to have registered for an XDA account to be able to post there.
Hope this helps, and good luck!
Hey guys. I'm trying to compile AOSP for our device, but I keep running into problems. I try to add the local manifest but I keep getting an error. The error is:
HTML:
fatal: error parsing manifest /home/iacevedo/aosp/.repo/local_manifests/local_manifest.xml: duplicate attribute: line 7, column 61
My manifest his this:
HTML:
<?xml version="1.0" encoding="UTF-8"?>
<manifest>
<remote name="github"
fetch="https://github.com/" />
<project path="Cyanogenmod/android_device_motorola_quark" path="devices/motorola/quark" remote="github" revision="cm-12.1"/>
<project path="Cyanogenmod/android_kernel_motorola_apq8084" path="kernel/motorola/quark" remote="github" revision="cm-12.1" />
<project path="bhb27/proprietary_vendor_motorola" path="vendor/motorola" remote="github" revision="RR-12/12-LP" />
</manifest>
I have limited knowledge in compiling so if someone can help me it would be very appreciated.
Edit: Forgot error. Sorry. Also updated manifest to have github as remote and added proprietary files.
izzy001 said:
Hey guys. I'm trying to compile AOSP for our device, but I keep running into problems. I try to add the local manifest but I keep getting an error. The error is:
HTML:
fatal: error parsing manifest /home/iacevedo/aosp/.repo/local_manifests/local_manifest.xml: duplicate attribute: line 7, column 61
My manifest his this:
HTML:
<?xml version="1.0" encoding="UTF-8"?>
<manifest>
<remote name="github"
fetch="https://github.com/" />
<project path="Cyanogenmod/android_device_motorola_quark" path="devices/motorola/quark" remote="github" revision="cm-12.1"/>
<project path="Cyanogenmod/android_kernel_motorola_apq8084" path="kernel/motorola/quark" remote="github" revision="cm-12.1" />
<project path="bhb27/proprietary_vendor_motorola" path="vendor/motorola" remote="github" revision="RR-12/12-LP" />
</manifest>
I have limited knowledge in compiling so if someone can help me it would be very appreciated.
Edit: Forgot error. Sorry. Also updated manifest to have github as remote and added proprietary files.
Click to expand...
Click to collapse
what source is that?
your file is wrong, It should be...
Code:
<?xml version="1.0" encoding="UTF-8"?>
<manifest>
<project name="CyanogenMod/android_device_qcom_common" path="device/qcom/common" remote="github" revision="cm-12.1" />
<project name="CyanogenMod/android_kernel_motorola_apq8084" path="kernel/motorola/apq8084" remote="github" revision="cm-12.1" />
<project name="TheMuppets/proprietary_vendor_motorola" path="vendor/motorola" remote="github" revision="cm-12.1" />
</manifest>
the vendor for Motorola device is TheMuppets that is the stable one, you can use my but I change too much and in some point in time I may let a nonfunctional tree on my git plus I may delete/change the name of that branch any day, but TheMuppets will never do that because that is the one used by CM server to build and is 100% stable.
you do not put device tree on the manifest that is personal, you must have your one make changes and publish that to your one github, some source is not compatible with CM that is way I ask the source...
If the source is not CM base it will require a lot of dev skills because you will need to change almost all the device tree to make it work, as the only device tree that exist today is CM.
baybutcher27 said:
what source is that?
your file is wrong, It should be...
Code:
<?xml version="1.0" encoding="UTF-8"?>
<manifest>
<project name="CyanogenMod/android_device_qcom_common" path="device/qcom/common" remote="github" revision="cm-12.1" />
<project name="CyanogenMod/android_kernel_motorola_apq8084" path="kernel/motorola/apq8084" remote="github" revision="cm-12.1" />
<project name="TheMuppets/proprietary_vendor_motorola" path="vendor/motorola" remote="github" revision="cm-12.1" />
</manifest>
the vendor for Motorola device is TheMuppets that is the stable one, you can use my but I change too much and in some point in time I may let a nonfunctional tree on my git plus I may delete/change the name of that branch any day, but TheMuppets will never do that because that is the one used by CM server to build and is 100% stable.
you do not put device tree on the manifest that is personal, you must have your one make changes and publish that to your one github, some source is not compatible with CM that is way I ask the source...
If the source is not CM base it will require a lot of dev skills because you will need to change almost all the device tree to make it work, as the only device tree that exist today is CM.
Click to expand...
Click to collapse
Thanks, I don't get that error anymore! The sources were just some I had found from around the forum. I'm going to switch to a Ubuntu based distro because I'm having some errors with my Java. Any you recommend?
izzy001 said:
Thanks, I don't get that error anymore! The sources were just some I had found from around the forum. I'm going to switch to a Ubuntu based distro because I'm having some errors with my Java. Any you recommend?
Click to expand...
Click to collapse
I use google recommendation... Ubuntu 14.04 64bits.
http://source.android.com/source/initializing.html
if you need let me know I like to see more ROM for quark... :good:
Ok so I'm working on this on my free time, in between two jobs. On the manifest, I don't need the device tree? Or do I have to build that myself?
izzy001 said:
Ok so I'm working on this on my free time, in between two jobs. On the manifest, I don't need the device tree? Or do I have to build that myself?
Click to expand...
Click to collapse
you can but only if the source is 100% CM compatible and if you don't plan to make the ROM with your taste, CM is vary basic there is a lot to add or remove from it, plus most source are not 100% compatible they need changes to the device tree to make it work, to know if you need to change you can try and have a error or you look for other devices tree that use that source and look for the changes that they make to work almost all device tree start by forking CM tree.
so you fork CM tree, clone to your machine make the changes and publish it to your github account, just search github basic tings clone commit etc, you will find all the command and things related, XDA and google have it all just search.