Add activity to manifest by ant -
i have 2 android projects, 1 of them can androidlibrary project. in case should add activity manifest file. must ant build script. example: <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="ru.yes.app1" android:versioncode="1" android:versionname="1.0" > <uses-sdk android:minsdkversion="8" android:targetsdkversion="17" /> <application android:allowbackup="true" android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:theme="@style/apptheme" > <activity android:name="ru.yes.app1.activity1" android:label="@string/app_name" > <intent-filter> <action android:name="android.intent.action.mai...