summaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authorQuang Luong <qal@google.com>2019-06-18 16:37:14 -0700
committerQuang Luong <qal@google.com>2019-07-01 14:17:40 -0700
commit18037f7e54c1ec2805b377eff666bec3d314a78b (patch)
tree8a4865da5e331db45c39b739457aa3c85b06e83f /libs
parent1f011e2b761ff93c0ec33c584481b8957e5520e3 (diff)
Create WifiTrackerLib module for WifiTracker refactor
Created android library WifiTrackerLib to host WifiTracker2, which will eventually replace SettingsLib's WifiTracker. Test: mm Bug: 70983952 Change-Id: I9bb9d0cb6502168169e2e1d47bc178cb7049409b
Diffstat (limited to 'libs')
-rw-r--r--libs/WifiTrackerLib/Android.bp4
-rw-r--r--libs/WifiTrackerLib/AndroidManifest.xml21
2 files changed, 25 insertions, 0 deletions
diff --git a/libs/WifiTrackerLib/Android.bp b/libs/WifiTrackerLib/Android.bp
new file mode 100644
index 000000000..501a956d2
--- /dev/null
+++ b/libs/WifiTrackerLib/Android.bp
@@ -0,0 +1,4 @@
+android_library {
+ name: "WifiTrackerLib",
+ srcs: ["src/**/*.java"],
+}
diff --git a/libs/WifiTrackerLib/AndroidManifest.xml b/libs/WifiTrackerLib/AndroidManifest.xml
new file mode 100644
index 000000000..669f2fc60
--- /dev/null
+++ b/libs/WifiTrackerLib/AndroidManifest.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+ Copyright (C) 2019 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ package="com.android.wifitrackerlib">
+
+</manifest>