PrasandP / android-remote-stacktrace

Automatically exported from code.google.com/p/android-remote-stacktrace
0 stars 0 forks source link

AndroidManifest.xml #10

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Clone
2. Compile

AndroidManifest.xml is missing

Original issue reported on code.google.com by jonas.he...@gmail.com on 7 Feb 2012 at 7:38

GoogleCodeExporter commented 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

GoogleCodeExporter commented 8 years ago
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