kheldar13

Forum Replies Created

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • in reply to: Android Permissions #11085

    kheldar13
    Participant

    Right now, I’m just using it to store user settings in a text file. Later, in a created directory, I may have some records(also in a text file) readable by other apps. So just text files at this point.

    in reply to: Android Permissions #11077

    kheldar13
    Participant

    Awesome!
    Thanks Mark.
    and Thanks CopperCircle

    in reply to: Android Permissions #11073

    kheldar13
    Participant

    Thanks for the answers, guys. Greatly Appreciated.

    So how would I use this in Monkey2?

    in reply to: Android Permissions #11025

    kheldar13
    Participant

    <?xml version=”1.0″ encoding=”utf-8″?>

    <manifest
    xmlns:android=”http://schemas.android.com/apk/res/android”
    package=”com.sscalculator.bighatgames”>

    <uses-sdk android:minSdkVersion=”10″ android:targetSdkVersion=”23″ />

    <uses-feature android:glEsVersion=”0x00020000″ />

    <uses-permission android:name=”android.permission.INTERNET” />
    <uses-permission android:name=”android.permission.ACCESS_NETWORK_STATE” />
    <uses-permission android:name=”android.permission.READ_EXTERNAL_STORAGE” />
    <uses-permission android:name=”android.permission.WRITE_EXTERNAL_STORAGE” />

    <application
    android:allowBackup=”true”
    android:icon=”@mipmap/ic_launcher”
    android:label=”@string/app_name”
    android:supportsRtl=”true”
    android:theme=”@style/AppTheme”>
    <activity
    android:name=”.SSCalculator”
    android:label=”SSCalculator”
    android:screenOrientation=”portrait”
    android:configChanges=”keyboardHidden|orientation|screenSize”
    android:theme=”@android:style/Theme.NoTitleBar.Fullscreen”
    android:launchMode=”singleTop”>

    android:configChanges=”orientation”>

    <intent-filter>
    <action android:name=”android.intent.action.MAIN” />
    <category android:name=”android.intent.category.LAUNCHER” />
    </intent-filter>

    </activity>
    </application>

    </manifest>

    in reply to: Android Permissions #11024

    kheldar13
    Participant

    Here is the manifest.

    in reply to: Float to String problem #10715

    kheldar13
    Participant

    Thanks for looking into it Mark.
    I found a workaround for what I needed.

    in reply to: Float to String problem #10682

    kheldar13
    Participant

    ,

    in reply to: Portrait Mode on Android #10326

    kheldar13
    Participant

    Nevermind.

    I just changed the AndroidManifest.xml and that works.

    There doesn’t seem to be a way to pass preprocessor directives from code.(if there is I am missing it.)

Viewing 8 posts - 1 through 8 (of 8 total)