Skip to content

Commit

Permalink
initial test commit
Browse files Browse the repository at this point in the history
  • Loading branch information
roman10 committed May 27, 2011
0 parents commit daf50b9
Show file tree
Hide file tree
Showing 3 changed files with 83 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .classpath
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="src" path="gen"/>
<classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/>
<classpathentry kind="output" path="bin"/>
</classpath>
33 changes: 33 additions & 0 deletions .project
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>apl</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>com.android.ide.eclipse.adt.ResourceManagerBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>com.android.ide.eclipse.adt.PreCompilerBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>com.android.ide.eclipse.adt.ApkBuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>com.android.ide.eclipse.adt.AndroidNature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>
43 changes: 43 additions & 0 deletions AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="roman10reborn.apl.main"
android:versionCode="7"
android:versionName="1.3.2">
<application android:icon="@drawable/calllog1"
android:label="@string/app_name"
android:debuggable="false">
<activity android:name=".Main"
android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar"
>
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name="roman10reborn.dialogs.CallLogFilterDialog"
android:theme="@android:style/Theme.Dialog"
android:excludeFromRecents="true">
</activity>
<activity android:name="roman10reborn.dialogs.FilterNameListDialog"
android:theme="@android:style/Theme.Dialog"
android:excludeFromRecents="true">
</activity>
<activity android:name="roman10reborn.dialogs.FilterNumberListDialog"
android:theme="@android:style/Theme.Dialog"
android:excludeFromRecents="true">
</activity>
<activity android:name="roman10reborn.dialogs.MainChoiceDialog"
android:label="Choose an Action"
android:theme="@android:style/Theme.Dialog"
android:excludeFromRecents="true">
</activity>
</application>

<uses-sdk android:minSdkVersion="5" />

<uses-permission android:name="android.permission.CALL_PHONE"></uses-permission>
<uses-permission android:name="android.permission.READ_CONTACTS"></uses-permission>
<uses-permission android:name="android.permission.WRITE_CONTACTS"></uses-permission>

</manifest>

0 comments on commit daf50b9

Please sign in to comment.