i have this
manifest file
<permission
android:name="com.mine.signedgooglemap.permission.MAPS_RECEIVE"
android:protectionLevel="signature" />
<uses-feature
android:glEsVersion="0x00020000"
android:required="true" />
<uses-permission android:name="com.mine.signedgooglemap.permission.MAPS_RECEIVE" /
I'm not very familiar with Android.
I encounter 3 problems when developing android App with SMS comunication.
because i want an android phone to send/receive SMS with other non-Android devices, and it is not a common approach for Android.
permission added:
<uses-permission android:name="android.permission.SEND_SMS" />
<uses-permission android:name="android.permission.REC
I am getting a connection refused exception when i am trying to get directory listing from drivehq ftp server using my ftp client from android. Please help me and solve my problem. My code for this purpose is given below also i am testing on real device samsang galaxy mobile.
I have defined the following permission in my the manifest of RecSched application/project:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.recschedapk"
android:versionCode="1"
android:versionName="1.0" >
<permission android:name="com.example.recschedapk.permission.DEADLY_ACT"
android:label="DeadlyActivity"
android
Hi i have got some code with which it is possible to send data between 2 phones over sockets.
My application work fine on my emulator but when i installed it in the android device its not appear on the application list and i get the error message is "error connection" this is the manifest.xml to my app is there any error!!!!
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.starting"
android:versionCode="1"
android:versionName="1.0" >
<use
i have obtained an api key from code.google.com and put it in my manifest file.
i instantiated a mapfragment in my res.layout and it loads only a blank screen with the + and - zoom buttons overlayed.
here is my manifest
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.myapp"
android:versionCode="1"
My research is how to get a Permission set of the android application(.apk file) using android API calls for resources, and get another list of the Permission set used by application (in android manifest file).
I have a JAX-RPC web service running on WebSphere V7. It requires a UserNameToken for security. I have a custom login module (MyLoginModule) which extracts the username and password, and that module is defined as a JAAS application login in the websphere admin console. Using IBM RAD 8.0, I have bound the token consumer to the login module using the JAAS config name of the module.