Forum Replies Created
- 
		AuthorPosts
 - 
		
			
				
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.
Awesome!
Thanks Mark.
and Thanks CopperCircleThanks for the answers, guys. Greatly Appreciated.
So how would I use this in Monkey2?
<?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>
Here is the manifest.
Thanks for looking into it Mark.
I found a workaround for what I needed.,
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.)
 - 
		AuthorPosts