Open GoogleCodeExporter opened 8 years ago
Unresolved;
bos.write(G.ANDROID_VERSION + "\n");
bos.write(G.PHONE_MODEL + "\n");
Why not provide a description on how to build? Added to G.template
public static String ANDROID_VERSION = "xxx";
public static String PHONE_MODEL = "yyy";
Added the following xml:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.nullwire.trace"
android:versionCode="1" android:versionName="1.0">
<application android:name=".Dummy">
</application>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.INTERNET"/>
</manifest>
Original comment by jonas.he...@gmail.com
on 7 Feb 2012 at 8:04
Added the following to the build.xml to be able to debug and see the source:
<target name="compile">
<mkdir dir="${build.dir}" />
<mkdir dir="${classes.dir}" />
<javac srcdir="." destdir="${classes.dir}" fork="true" classpathref="classpath" debug="on" debuglevel="lines,vars,source" deprecation="on" memoryInitialSize="512m" memoryMaximumSize="1024m" optimize="true" />
</target>
Original comment by jonas.he...@gmail.com
on 7 Feb 2012 at 8:31
Original issue reported on code.google.com by
jonas.he...@gmail.com
on 7 Feb 2012 at 7:38