Skip to content
This repository has been archived by the owner on Mar 11, 2019. It is now read-only.

Commit

Permalink
Remove redundant "lib" part, use sane names
Browse files Browse the repository at this point in the history
  • Loading branch information
mvdan committed May 13, 2015
1 parent f180ec9 commit 610102a
Show file tree
Hide file tree
Showing 11 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# libaccesspoint
# accesspoint

Manage wireless access points in Android.

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apply plugin: 'com.android.application'

dependencies {
compile project(':libaccesspoint')
compile project(':library')
}

android {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="cc.mvdan.libaccesspointexample"
package="cc.mvdan.accesspoint.example"
>

<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package cc.mvdan.libaccesspointexample;
package cc.mvdan.accesspoint.example;

import android.app.Activity;
import android.content.Context;
Expand All @@ -12,7 +12,7 @@
import java.net.InetAddress;
import java.util.List;

import cc.mvdan.libaccesspoint.WifiApControl;
import cc.mvdan.accesspoint.WifiApControl;

public class MainActivity extends Activity {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">LibAP Example</string>
<string name="app_name">AP Example</string>
<string name="refresh">Refresh</string>
<string name="enable">Enable</string>
<string name="disable">Disable</string>
Expand Down
4 changes: 0 additions & 4 deletions libaccesspoint/src/main/AndroidManifest.xml

This file was deleted.

File renamed without changes.
4 changes: 4 additions & 0 deletions library/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
<manifest
package="cc.mvdan.accesspoint"
>
</manifest>
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package cc.mvdan.libaccesspoint;
package cc.mvdan.accesspoint;

import android.content.Context;
import android.net.wifi.WifiConfiguration;
Expand Down
4 changes: 2 additions & 2 deletions settings.gradle
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
include ':libaccesspoint'
include ':libaccesspoint-example'
include ':library'
include ':example'

0 comments on commit 610102a

Please sign in to comment.