October 16 - We've updated apktool most recent version (2.02)

Decompiling Complete!

Here's a contents of AndroidManifest.xml. You can download the full contents of the APK here

<?xml version="1.0" encoding="utf-8"?>
<manifest android:versionCode="1" android:versionName="1.0" android:installLocation="auto" package="bbc.mobile.news.ww"
  xmlns:android="http://schemas.android.com/apk/res/android">
    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
    <uses-permission android:name="android.permission.READ_PHONE_STATE" />
    <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
    <uses-permission android:name="android.permission.VIBRATE" />
    <uses-permission android:name="android.permission.WAKE_LOCK" />
    <application android:label="@string/app_name" android:icon="@drawable/icon" android:name="bbc.mobile.news.app.ww.BBCNewsWwApp" android:debuggable="false">
        <service android:name="com.medialets.advertising.AdManagerService" />
        <service android:label="@string/bbc_news_update_service_label" android:name=".service.UpdateService" />
        <activity android:label="@string/app_name" android:name=".HomeWwActivity" android:screenOrientation="portrait">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity android:label="@string/app_name" android:name=".ArticleActivity" android:screenOrientation="portrait">
            <intent-filter />
        </activity>
        <activity android:label="@string/app_name" android:name=".PersonalisationActivity" android:screenOrientation="portrait">
            <intent-filter />
        </activity>
        <activity android:label="@string/app_name" android:name="bbc.mobile.news.VideoActivity" android:screenOrientation="landscape">
            <intent-filter />
        </activity>
        <activity android:label="@string/app_name" android:name=".SettingsActivity" android:screenOrientation="portrait">
            <intent-filter />
        </activity>
        <activity android:label="@string/app_name" android:name=".PrivacyActivity" android:screenOrientation="portrait">
            <intent-filter />
        </activity>
        <activity android:label="@string/app_name" android:name=".RemoteInfoViewActivity" android:screenOrientation="portrait">
            <intent-filter />
        </activity>
        <receiver android:name="bbc.mobile.news.receiver.ConnectivityReceiver">
            <intent-filter>
                <action android:name="android.net.conn.CONNECTIVITY_CHANGE" />
            </intent-filter>
        </receiver>
        <receiver android:name="bbc.mobile.news.ww.receiver.BootReceiverWw">
            <intent-filter>
                <action android:name="android.net.conn.CONNECTIVITY_CHANGE" />
            </intent-filter>
        </receiver>
        <receiver android:label="BootReceiver" android:name="bbc.mobile.news.ww.receiver.BootReceiverWw" android:enabled="true" android:exported="false">
            <intent-filter>
                <action android:name="android.intent.action.BOOT_COMPLETED" />
            </intent-filter>
        </receiver>
        <receiver android:name=".receiver.AlarmReceiverWw" />
    </application>
    <uses-sdk android:minSdkVersion="4" android:maxSdkVersion="10" />
</manifest>


Did you find this useful?

Sign up to receive occasional email updates on Android developement and best security practices!