Hi,

I'm using AndroidStudio 0.3.7 and gradlle plugin 0.6.3

When creating a new application module through the wizard, the intent 
filter does not get created (at least for "Blank Activity" and 
"Master/Detail flow" which were the two I tried).

The activity tag in the manifest is generated as below:

        <activity
            android:name="com.example.listview.ItemListActivity"
            android:label="@string/app_name" >
        </activity>

I had to manually add the intent filter for the default activity as shown 
here:

        <activity
            android:name="com.example.listview.ItemListActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

Thanks

Jim



-- 
You received this message because you are subscribed to the Google Groups 
"adt-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to