Skip to content

Commit

Permalink
修改包名
Browse files Browse the repository at this point in the history
  • Loading branch information
ooftf committed Dec 20, 2017
1 parent 31e88ae commit ab07299
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ apply plugin: 'kotlin-android-extensions'
android {
compileSdkVersion 26
defaultConfig {
applicationId "com.tf.oof.operationedittextlayout"
applicationId "com.ooftf.operationedittextlayout"
minSdkVersion 14
targetSdkVersion 26
versionCode 1
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.tf.oof.operationedittextlayout
package com.ooftf.operationedittextlayout

import android.support.test.InstrumentationRegistry
import android.support.test.runner.AndroidJUnit4
Expand Down
4 changes: 2 additions & 2 deletions app/src/main/AndroidManifest.xml
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="com.tf.oof.operationedittextlayout">
package="com.ooftf.operationedittextlayout">

<application
android:allowBackup="true"
Expand All @@ -9,7 +9,7 @@
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<activity android:name="com.ooftf.operationedittextlayout.MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.tf.oof.operationedittextlayout
package com.ooftf.operationedittextlayout

import android.support.v7.app.AppCompatActivity
import android.os.Bundle
Expand Down
8 changes: 4 additions & 4 deletions app/src/main/res/layout/activity_main.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
android:orientation="vertical"
tools:context=".MainActivity">

<com.tf.oof.operation.OperationEditTextLayout
<com.ooftf.operation.OperationEditTextLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:delOperationEnabled="true"
Expand All @@ -19,9 +19,9 @@
android:paddingLeft="16dp"
android:layout_width="match_parent"
android:layout_height="48dp" />
</com.tf.oof.operation.OperationEditTextLayout>
</com.ooftf.operation.OperationEditTextLayout>

<com.tf.oof.operation.OperationEditTextLayout
<com.ooftf.operation.OperationEditTextLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:delOperationEnabled="true"
Expand All @@ -31,5 +31,5 @@
android:paddingLeft="16dp"
android:layout_width="match_parent"
android:layout_height="48dp" />
</com.tf.oof.operation.OperationEditTextLayout>
</com.ooftf.operation.OperationEditTextLayout>
</LinearLayout>
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.tf.oof.operationedittextlayout
package com.ooftf.operationedittextlayout

import org.junit.Test

Expand Down
2 changes: 1 addition & 1 deletion lib/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.tf.oof.operation" />
package="com.ooftf.operation" />
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.tf.oof.operation
package com.ooftf.operation

import android.content.Context
import android.text.Editable
Expand Down

0 comments on commit ab07299

Please sign in to comment.