Add missing activities to AndroidManifest (NoteEditorActivity, SettingsActivity, WifiSyncReceiver)
This commit is contained in:
@@ -26,6 +26,28 @@
|
|||||||
<category android:name="android.intent.category.LAUNCHER" />
|
<category android:name="android.intent.category.LAUNCHER" />
|
||||||
</intent-filter>
|
</intent-filter>
|
||||||
</activity>
|
</activity>
|
||||||
|
|
||||||
|
<!-- Editor Activity -->
|
||||||
|
<activity
|
||||||
|
android:name=".NoteEditorActivity"
|
||||||
|
android:windowSoftInputMode="adjustResize"
|
||||||
|
android:parentActivityName=".MainActivity" />
|
||||||
|
|
||||||
|
<!-- Settings Activity -->
|
||||||
|
<activity
|
||||||
|
android:name=".SettingsActivity"
|
||||||
|
android:parentActivityName=".MainActivity" />
|
||||||
|
|
||||||
|
<!-- WiFi Sync Receiver -->
|
||||||
|
<receiver
|
||||||
|
android:name=".sync.WifiSyncReceiver"
|
||||||
|
android:exported="false">
|
||||||
|
<intent-filter>
|
||||||
|
<action android:name="android.net.wifi.STATE_CHANGE" />
|
||||||
|
<action android:name="android.net.conn.CONNECTIVITY_CHANGE" />
|
||||||
|
</intent-filter>
|
||||||
|
</receiver>
|
||||||
|
|
||||||
</application>
|
</application>
|
||||||
|
|
||||||
</manifest>
|
</manifest>
|
||||||
Reference in New Issue
Block a user