summaryrefslogtreecommitdiff
path: root/tests/FeatureSplit/base/AndroidManifest.xml
Commit message (Collapse)AuthorAgeFilesLines
* Add an exported flag in manifestAshwini Oruganti2020-03-231-5/+7
| | | | | | | | | | | | | | | | | With b/150232615, we will need an explicit value set for the exported flag when intent filters are present, as the default behavior is changing for S+. This change adds the value reflecting the previous default to the manifest. These changes were made using an automated tool, the xml file may be reformatted slightly creating a larger diff. The only "real" change is the addition of "android:exported" to activities, services, and receivers that have one or more intent-filters. Bug: 150232615 Test: TH Exempt-From-Owner-Approval: mechanical refactoring Change-Id: I4457ff2bd466a4c56fed2570e110f251031c2385
* Fix FeatureSplit tests to work properly with Java codeAdam Lesinski2016-01-141-2/+10
| | | | Change-Id: I2f6d770c860c05e0d5a407fd76dc59dd748e3c3f
* AAPT support for feature splitsAdam Lesinski2014-08-041-0/+22
This change allows the developer to add a base package for which to build a feature split. The generated resource types will begin after the base APK's defined types so as not to collide or override resources. Multiple features can be generated by first choosing an arbitrary order for the features. Then for each feature, the base APK and any preceding features are specified with the --feature-of flags. So with a base APK 'A' and features, 'B', and 'C', 'B' would be built with aapt package [...] --feature-of A [...] and 'C' would be built with aapt package [...] --feature-of A --feature-of B [...] Change-Id: I1be66e3f8df9a737b21c71f8a93685376c7e6780