Skip to content

Commit 36ca3a3

Browse files
committed
rebranding
1 parent 9f84563 commit 36ca3a3

File tree

33 files changed

+41
-41
lines changed

33 files changed

+41
-41
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ local.properties
1111
# OSX
1212
.DS_Store
1313

14-
# Aneko
14+
# AndNeko
1515
play.json
1616
release.keystore
1717
secrets.tar

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,10 @@ deploy:
4444
secure: Y/0slou0THCqA9lQ6G7M4HbkVW+EI4ZQmfBcm3Mv+NGwSSmdFUWR9VsmHmScp2d4pxwRIm1wcAKMma7ApGDUxDx22qh1OCkN8u7hiahCjoBNWK5YL62Q0Kn6DoFJkVVGKAegVbRq3199n16jG3Z2z6Gz++NBXwwyAR2eRk8o5utVnSX1IKnfAqEJEkjxqaAjRh8hAC7B8ZSNysNdRE7bvTfBgzwpb2XUXXZLsvLuMQ1NFTmZ75BBEi/IJjtoViaTOn0UsaeA7SAY2DC6TGUOnE2F5b3uYPNgqgk57QTBzM5Zt4ETlxkz8V8tYhz4A2Azyql5aDemUDfCDFiu2umUkBrYll5km3viRhE2OExtnsyWhSX6tExObhb7z3Cw8MjumN+7LKh6wVPadCot1E9qpTd7UjPlGmyviFLlRcTAAK/3zEvJQjg1cd7mxdRlWvDzZM2pMGPtJDljV4342mARYqP3rvTCRn/0/d3i/9pZDZLujQVcqVBC1qLQkn5ssPCygyelX8CDcfBT6dpw1yfqIl9VlmtteNzqTBsWBJ5Sc4g0rYQEhxdgRraWYxeOE+63UEmJb42R3URGmXgiRe9Bv9I2R37qrhTRp2MeK3M/nUb2Bt1MtQWYsFTWt4KfWrJNBJGGo/Y7TZs/+km5mCxSYJkx/q34ZFYMAa/UfV7nF+U=
4545
file_glob: true
4646
file:
47-
- "app/build/outputs/apk/Aneko-*-release.apk"
47+
- "app/build/outputs/apk/AndNeko-*-release.apk"
4848
- "app/build/outputs/lint-results-debug.xml"
4949
- "app/build/outputs/mapping/release/mapping.txt"
5050
skip_cleanup: true
5151
on:
52-
repo: martino2k6/aneko
52+
repo: martino2k6/andneko
5353
branch: master

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# Android Neko, *aneko*
2-
[![Build Status](https://travis-ci.org/martino2k6/aneko.svg)](https://travis-ci.org/martino2k6/aneko)
1+
# Android Neko, *AndNeko*
2+
[![Build Status](https://travis-ci.org/martino2k6/andneko.svg)](https://travis-ci.org/martino2k6/andneko)
33
[![Apache2 licensed](https://img.shields.io/badge/license-Apache-blue.svg)](./LICENSE.txt)
44

55
TODO

app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ apply plugin: 'com.github.triplet.play'
1919
apply plugin: 'kotlin-android'
2020
apply plugin: 'kotlin-android-extensions'
2121

22-
def app = "Aneko"
22+
def app = "AndNeko"
2323
def versions = new Properties();
2424
versions.load(file("${project.rootDir}/version.properties").newDataInputStream())
2525

@@ -28,7 +28,7 @@ android {
2828
buildToolsVersion '24.0.1'
2929

3030
defaultConfig {
31-
applicationId 'net.orange_box.aneko'
31+
applicationId 'net.orange_box.andneko'
3232

3333
minSdkVersion 15
3434
targetSdkVersion 24

app/src/main/AndroidManifest.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,23 +17,23 @@ limitations under the License.
1717

1818
<manifest
1919
xmlns:android="http://schemas.android.com/apk/res/android"
20-
package="net.orange_box.aneko">
20+
package="net.orange_box.andneko">
2121

2222
<!-- permissions -->
2323
<uses-permission android:name="android.permission.BIND_ACCESSIBILITY_SERVICE"/>
2424
<uses-permission android:name="android.permission.INTERNET"/>
2525
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/>
2626

2727
<application
28-
android:icon="@drawable/awake_neko"
28+
android:icon="@mipmap/ic_launcher"
2929
android:label="@string/app_name"
3030
android:theme="@style/Theme.App"
3131
android:allowBackup="true"
3232
android:fullBackupContent="true">
3333

3434
<!-- activities -->
3535
<activity
36-
android:name=".HomeActivity"
36+
android:name="net.orange_box.andneko.HomeActivity"
3737
android:label="@string/title_home">
3838

3939
<intent-filter>
@@ -44,7 +44,7 @@ limitations under the License.
4444

4545
<!-- services -->
4646
<service
47-
android:name=".FloatingService"
47+
android:name="net.orange_box.andneko.FloatingService"
4848
android:label="@string/app_name"
4949
android:permission="android.permission.BIND_ACCESSIBILITY_SERVICE">
5050

app/src/main/java/net/orange_box/aneko/Extensions.kt renamed to app/src/main/java/net/orange_box/andneko/Extensions.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package net.orange_box.aneko
17+
package net.orange_box.andneko
1818

1919
import android.content.Context
2020
import android.content.res.Resources

app/src/main/java/net/orange_box/aneko/FloatingService.kt renamed to app/src/main/java/net/orange_box/andneko/FloatingService.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package net.orange_box.aneko
16+
package net.orange_box.andneko
1717

1818
import android.accessibilityservice.AccessibilityService
1919
import android.accessibilityservice.AccessibilityServiceInfo
@@ -187,7 +187,7 @@ class FloatingService :
187187
getService<NotificationManager>(Context.NOTIFICATION_SERVICE).notify(
188188
0,
189189
NotificationCompat.Builder(this)
190-
.setSmallIcon(android.R.drawable.sym_def_app_icon)
190+
.setSmallIcon(R.drawable.ic_stat_icon)
191191
.setWhen(Date().time)
192192
.setContentTitle(getString(R.string.notification_permissions_title))
193193
.setContentText(getString(R.string.notification_permissions_content))

app/src/main/java/net/orange_box/aneko/HomeActivity.kt renamed to app/src/main/java/net/orange_box/andneko/HomeActivity.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package net.orange_box.aneko
17+
package net.orange_box.andneko
1818

1919
import android.os.Bundle
2020
import android.support.v7.app.AppCompatActivity

app/src/main/java/net/orange_box/aneko/PathFinder.kt renamed to app/src/main/java/net/orange_box/andneko/PathFinder.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package net.orange_box.aneko
17+
package net.orange_box.andneko
1818

1919
import java.util.*
2020

app/src/main/java/net/orange_box/aneko/PathGraph.kt renamed to app/src/main/java/net/orange_box/andneko/PathGraph.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package net.orange_box.aneko
17+
package net.orange_box.andneko
1818

1919
internal class PathGraph(
2020
private val left: Int,

0 commit comments

Comments
 (0)