i develop one application in android i want to see my app in app brain please help me tell me how can i publish my application in appbrain i.e.., below link.
http://www.appbrain.com/
i didn’t use any permissions in android manifest file
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.org.mmts"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk android:minSdkVersion="8" />
<application
android:icon="@drawable/mmts_icon"
android:label="myproject"
>
<activity
android:label="myproject"
android:name=".AndroidtabActivity"
>
<intent-filter >
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".MainActivity" >
<intent-filter >
<action android:name="com.org.mmts.MainActivity" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity
android:name=".Touch" >
<intent-filter >
<action android:name="com.org.mmts.Touch" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity
android:name=".InfoPage" >
<intent-filter >
<action android:name="com.org.mmts.InfoPage" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity
android:name="com.org.mmts.Display" >
<intent-filter >
<action android:name="com.org.mmts.Display" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
</application>
</manifest>
thanks in advance
AppBrain is not a marketplace, it is a website that periodically scrapes Android Market and displays that content. If you want your application to show up on this website, publish it in the Android Market.