Eric Kok
12 years ago
32 changed files with 415 additions and 152 deletions
@ -0,0 +1,8 @@ |
|||||||
|
<?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="con" path="com.android.ide.eclipse.adt.LIBRARIES"/> |
||||||
|
<classpathentry kind="output" path="bin/classes"/> |
||||||
|
</classpath> |
@ -0,0 +1,33 @@ |
|||||||
|
<?xml version="1.0" encoding="UTF-8"?> |
||||||
|
<projectDescription> |
||||||
|
<name>Transdroid Full</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> |
@ -0,0 +1,102 @@ |
|||||||
|
<?xml version="1.0" encoding="utf-8"?> |
||||||
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android" |
||||||
|
package="org.transdroid.full" |
||||||
|
android:versionCode="1" |
||||||
|
android:versionName="2.0-alpha1" > |
||||||
|
|
||||||
|
<uses-sdk |
||||||
|
android:minSdkVersion="7" |
||||||
|
android:targetSdkVersion="17" /> |
||||||
|
|
||||||
|
<supports-screens |
||||||
|
android:anyDensity="true" |
||||||
|
android:largeScreens="true" |
||||||
|
android:normalScreens="true" |
||||||
|
android:smallScreens="true" |
||||||
|
android:xlargeScreens="true" /> |
||||||
|
|
||||||
|
<uses-permission android:name="android.permission.INTERNET" /> |
||||||
|
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" /> |
||||||
|
<uses-permission android:name="android.permission.VIBRATE" /> |
||||||
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> |
||||||
|
<uses-feature android:name="android.hardware.touchscreen" android:required="false" /> |
||||||
|
|
||||||
|
<application |
||||||
|
android:allowBackup="true" |
||||||
|
android:icon="@drawable/ic_launcher" |
||||||
|
android:label="@string/app_name" |
||||||
|
android:theme="@style/Theme.Sherlock" > |
||||||
|
|
||||||
|
<!-- Main activities --> |
||||||
|
<activity |
||||||
|
android:name="org.transdroid.core.gui.TorrentsActivity_" |
||||||
|
android:label="@string/app_name" |
||||||
|
android:icon="@drawable/ic_activity_torrents" |
||||||
|
android:uiOptions="splitActionBarWhenNarrow" |
||||||
|
android:theme="@style/TransdroidTheme" > |
||||||
|
<intent-filter> |
||||||
|
<action android:name="android.intent.action.MAIN" /> |
||||||
|
|
||||||
|
<category android:name="android.intent.category.LAUNCHER" /> |
||||||
|
</intent-filter> |
||||||
|
<intent-filter> |
||||||
|
<action android:name="android.intent.action.SEARCH" /> |
||||||
|
</intent-filter> |
||||||
|
|
||||||
|
<meta-data |
||||||
|
android:name="android.app.default_searchable" |
||||||
|
android:value="org.transdroid.gui.search.Search" /> |
||||||
|
</activity> |
||||||
|
<activity |
||||||
|
android:name="org.transdroid.core.gui.DetailsActivity_" |
||||||
|
android:icon="@drawable/ic_activity_torrents" |
||||||
|
android:uiOptions="splitActionBarWhenNarrow" |
||||||
|
android:theme="@style/TransdroidTheme" > |
||||||
|
</activity> |
||||||
|
|
||||||
|
<!-- Settings screens --> |
||||||
|
<activity android:name="org.transdroid.core.gui.settings.MainSettingsActivity_" /> |
||||||
|
<activity android:name="org.transdroid.core.gui.settings.ServerSettingsActivity_" /> |
||||||
|
<activity android:name="org.transdroid.core.gui.settings.WebsearchSettingsActivity_" /> |
||||||
|
<activity android:name="org.transdroid.core.gui.settings.RssfeedSettingsActivity_" /> |
||||||
|
<activity android:name="org.transdroid.core.gui.settings.NotificationSettingsActivity_" /> |
||||||
|
<activity android:name="org.transdroid.core.gui.settings.SystemSettingsActivity_" /> |
||||||
|
|
||||||
|
<!-- Search --> |
||||||
|
<activity |
||||||
|
android:name="org.transdroid.core.gui.SearchActivity" |
||||||
|
android:label="@string/search_torrentsearch" |
||||||
|
android:icon="@drawable/ic_activity_torrents" |
||||||
|
android:theme="@style/TransdroidTheme" > |
||||||
|
<intent-filter> |
||||||
|
<action android:name="android.intent.action.SEARCH" /> |
||||||
|
|
||||||
|
<category android:name="android.intent.category.DEFAULT" /> |
||||||
|
</intent-filter> |
||||||
|
<intent-filter> |
||||||
|
<action android:name="android.intent.action.SEND" /> |
||||||
|
|
||||||
|
<category android:name="android.intent.category.DEFAULT" /> |
||||||
|
|
||||||
|
<data android:mimeType="text/plain" /> |
||||||
|
</intent-filter> |
||||||
|
|
||||||
|
<meta-data |
||||||
|
android:name="android.app.default_searchable" |
||||||
|
android:value="org.transdroid.gui.search.Search" /> |
||||||
|
<meta-data |
||||||
|
android:name="android.app.searchable" |
||||||
|
android:resource="@xml/searchable" /> |
||||||
|
</activity> |
||||||
|
|
||||||
|
<provider |
||||||
|
android:name="org.transdroid.core.gui.SearchHistoryProvider" |
||||||
|
android:authorities="org.transdroid.core.gui.SearchHistoryProvider" |
||||||
|
android:exported="false" /> |
||||||
|
|
||||||
|
<meta-data |
||||||
|
android:name="android.app.default_searchable" |
||||||
|
android:value="org.transdroid.core.gui.SearchActivity_" /> |
||||||
|
</application> |
||||||
|
|
||||||
|
</manifest> |
@ -0,0 +1,20 @@ |
|||||||
|
# To enable ProGuard in your project, edit project.properties |
||||||
|
# to define the proguard.config property as described in that file. |
||||||
|
# |
||||||
|
# Add project specific ProGuard rules here. |
||||||
|
# By default, the flags in this file are appended to flags specified |
||||||
|
# in ${sdk.dir}/tools/proguard/proguard-android.txt |
||||||
|
# You can edit the include path and order by changing the ProGuard |
||||||
|
# include property in project.properties. |
||||||
|
# |
||||||
|
# For more details, see |
||||||
|
# http://developer.android.com/guide/developing/tools/proguard.html |
||||||
|
|
||||||
|
# Add any project specific keep options here: |
||||||
|
|
||||||
|
# If your project uses WebView with JS, uncomment the following |
||||||
|
# and specify the fully qualified class name to the JavaScript interface |
||||||
|
# class: |
||||||
|
#-keepclassmembers class fqcn.of.javascript.interface.for.webview { |
||||||
|
# public *; |
||||||
|
#} |
@ -0,0 +1,15 @@ |
|||||||
|
# This file is automatically generated by Android Tools. |
||||||
|
# Do not modify this file -- YOUR CHANGES WILL BE ERASED! |
||||||
|
# |
||||||
|
# This file must be checked in Version Control Systems. |
||||||
|
# |
||||||
|
# To customize properties used by the Ant build system edit |
||||||
|
# "ant.properties", and override values to adapt the script to your |
||||||
|
# project structure. |
||||||
|
# |
||||||
|
# To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): |
||||||
|
#proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt |
||||||
|
|
||||||
|
# Project target. |
||||||
|
target=android-16 |
||||||
|
android.library.reference.1=../core |
@ -0,0 +1,5 @@ |
|||||||
|
<resources> |
||||||
|
|
||||||
|
<string name="app_name" translatable="false">Transdroid</string> |
||||||
|
|
||||||
|
</resources> |
@ -0,0 +1,8 @@ |
|||||||
|
<?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="con" path="com.android.ide.eclipse.adt.LIBRARIES"/> |
||||||
|
<classpathentry kind="output" path="bin/classes"/> |
||||||
|
</classpath> |
@ -0,0 +1,33 @@ |
|||||||
|
<?xml version="1.0" encoding="UTF-8"?> |
||||||
|
<projectDescription> |
||||||
|
<name>Transdroid Lite</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> |
@ -0,0 +1,65 @@ |
|||||||
|
<?xml version="1.0" encoding="utf-8"?> |
||||||
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android" |
||||||
|
package="org.transdroid.lite" |
||||||
|
android:versionCode="1" |
||||||
|
android:versionName="2.0-alpha1" > |
||||||
|
|
||||||
|
<uses-sdk |
||||||
|
android:minSdkVersion="7" |
||||||
|
android:targetSdkVersion="17" /> |
||||||
|
|
||||||
|
<supports-screens |
||||||
|
android:anyDensity="true" |
||||||
|
android:largeScreens="true" |
||||||
|
android:normalScreens="true" |
||||||
|
android:smallScreens="true" |
||||||
|
android:xlargeScreens="true" /> |
||||||
|
|
||||||
|
<uses-permission android:name="android.permission.INTERNET" /> |
||||||
|
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" /> |
||||||
|
<uses-permission android:name="android.permission.VIBRATE" /> |
||||||
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> |
||||||
|
<uses-feature android:name="android.hardware.touchscreen" android:required="false" /> |
||||||
|
|
||||||
|
<application |
||||||
|
android:allowBackup="true" |
||||||
|
android:icon="@drawable/ic_launcher" |
||||||
|
android:label="@string/app_name" |
||||||
|
android:theme="@style/Theme.Sherlock" > |
||||||
|
|
||||||
|
<!-- Main activities --> |
||||||
|
<activity |
||||||
|
android:name="org.transdroid.core.gui.TorrentsActivity_" |
||||||
|
android:label="@string/app_name" |
||||||
|
android:icon="@drawable/ic_activity_torrents" |
||||||
|
android:uiOptions="splitActionBarWhenNarrow" |
||||||
|
android:theme="@style/TransdroidTheme" > |
||||||
|
<intent-filter> |
||||||
|
<action android:name="android.intent.action.MAIN" /> |
||||||
|
|
||||||
|
<category android:name="android.intent.category.LAUNCHER" /> |
||||||
|
</intent-filter> |
||||||
|
<intent-filter> |
||||||
|
<action android:name="android.intent.action.SEARCH" /> |
||||||
|
</intent-filter> |
||||||
|
|
||||||
|
<meta-data |
||||||
|
android:name="android.app.default_searchable" |
||||||
|
android:value="org.transdroid.gui.search.Search" /> |
||||||
|
</activity> |
||||||
|
<activity |
||||||
|
android:name="org.transdroid.core.gui.DetailsActivity_" |
||||||
|
android:icon="@drawable/ic_activity_torrents" |
||||||
|
android:uiOptions="splitActionBarWhenNarrow" |
||||||
|
android:theme="@style/TransdroidTheme" > |
||||||
|
</activity> |
||||||
|
|
||||||
|
<!-- Settings screens --> |
||||||
|
<activity android:name="org.transdroid.core.gui.settings.MainSettingsActivity_" /> |
||||||
|
<activity android:name="org.transdroid.core.gui.settings.ServerSettingsActivity_" /> |
||||||
|
<activity android:name="org.transdroid.core.gui.settings.NotificationSettingsActivity_" /> |
||||||
|
<activity android:name="org.transdroid.core.gui.settings.SystemSettingsActivity_" /> |
||||||
|
|
||||||
|
</application> |
||||||
|
|
||||||
|
</manifest> |
@ -0,0 +1,20 @@ |
|||||||
|
# To enable ProGuard in your project, edit project.properties |
||||||
|
# to define the proguard.config property as described in that file. |
||||||
|
# |
||||||
|
# Add project specific ProGuard rules here. |
||||||
|
# By default, the flags in this file are appended to flags specified |
||||||
|
# in ${sdk.dir}/tools/proguard/proguard-android.txt |
||||||
|
# You can edit the include path and order by changing the ProGuard |
||||||
|
# include property in project.properties. |
||||||
|
# |
||||||
|
# For more details, see |
||||||
|
# http://developer.android.com/guide/developing/tools/proguard.html |
||||||
|
|
||||||
|
# Add any project specific keep options here: |
||||||
|
|
||||||
|
# If your project uses WebView with JS, uncomment the following |
||||||
|
# and specify the fully qualified class name to the JavaScript interface |
||||||
|
# class: |
||||||
|
#-keepclassmembers class fqcn.of.javascript.interface.for.webview { |
||||||
|
# public *; |
||||||
|
#} |
@ -0,0 +1,15 @@ |
|||||||
|
# This file is automatically generated by Android Tools. |
||||||
|
# Do not modify this file -- YOUR CHANGES WILL BE ERASED! |
||||||
|
# |
||||||
|
# This file must be checked in Version Control Systems. |
||||||
|
# |
||||||
|
# To customize properties used by the Ant build system edit |
||||||
|
# "ant.properties", and override values to adapt the script to your |
||||||
|
# project structure. |
||||||
|
# |
||||||
|
# To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): |
||||||
|
#proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt |
||||||
|
|
||||||
|
# Project target. |
||||||
|
target=android-16 |
||||||
|
android.library.reference.1=../core |
Loading…
Reference in new issue