aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony Stange <stange@google.com>2022-04-05 16:20:06 +0000
committerCQ Bot Account <pigweed-scoped@luci-project-accounts.iam.gserviceaccount.com>2022-04-05 19:26:39 +0000
commit085e90576fa795f198b81483d37f4a6899d98f9e (patch)
tree7035df0de36297445110949e436d13d9e137c4e5
parentb6338171121118c65815017331fa4f74b2a8d8da (diff)
downloadpigweed-085e90576fa795f198b81483d37f4a6899d98f9e.tar.gz
pw_log: Fix AndroidManifest.xml format
<?xml?> declaration needs to go at the top of the file rather than after the copyright. Change-Id: I009a9809907bff57768cb60544fa27340b1e3e20 Reviewed-on: https://pigweed-review.googlesource.com/c/pigweed/pigweed/+/90000 Reviewed-by: Alexei Frolov <frolv@google.com> Commit-Queue: Anthony Stange <stange@google.com>
-rw-r--r--pw_log/AndroidManifest.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/pw_log/AndroidManifest.xml b/pw_log/AndroidManifest.xml
index f2da03fb7..6b359c274 100644
--- a/pw_log/AndroidManifest.xml
+++ b/pw_log/AndroidManifest.xml
@@ -1,3 +1,4 @@
+<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright 2022 The Pigweed Authors
@@ -13,7 +14,6 @@
License for the specific language governing permissions and limitations under
the License.
-->
-<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="dev.pigweed.pw_log" >