Re: [Csnd] fout Android
Date | 2012-08-20 00:47 |
From | "Art Hunkins" |
Subject | Re: [Csnd] fout Android |
Roger,
If you or someone could kindly lead me through the
process of changing permissions in a manifest.xml file, I'd be much
obliged. I'm clueless.
I've ES File Explorer app installed, and have
managed in Settings to enable "Up to Root (enable up to Root directory)", and
tried to enable "Root Explorer (only for rooted devices) - but am not able
to/not allowed to enable this feature on my "phone" (a Samsung Galaxy Tab 2
(7.0).
I've apparently access to all Root folders, but
can't locate anywhere folders for individual applications, especially any Csound
folders. And so, no AndroidManifest.xml files appear. (I've also enabled viewing
all hidden files.) I don't even know if the two Csound apps are supposed to
be on the sdcard or internal memory (I've supposed the sdcard, but what do I
know).
The darkness is great. Enlightenment is highly
prized.
Art Hunkins
|
Date | 2012-08-20 03:19 |
From | Roger Kelly |
Subject | Re: [Csnd] fout Android |
I am not sure exactly sure the context of your question, but basically you have to be building an Android application using Eclipse as your build tool. It sounds like you are possibly trying to run an already built app? If so you need the source for it. In the Eclipse project you will see a file called Manifest.xml. Android uses this to grant permission and do other things related to packaging of the app. In the top part of the Manifest.xml you will see this:
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="aorch.layout" android:versionCode="3" android:versionName="1.3" > <uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> <uses-sdk android:minSdkVersion="9" /> <application
You want to add the line in bold before the "application" section. This will allow Csound to be able to write files to the sdcard. On Sun, Aug 19, 2012 at 6:47 PM, Art Hunkins <abhunkin@uncg.edu> wrote:
|