Skip to content

Commit

Permalink
修复导包错误
Browse files Browse the repository at this point in the history
  • Loading branch information
Brook committed Dec 21, 2018
1 parent 9170069 commit 903de29
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ apply plugin: 'kotlin-android-extensions'
android {
compileSdkVersion 28
defaultConfig {
applicationId "com.brook.app.android.supportlibrary.statelayout"
applicationId "com.brook.app.android.supportlibrary"
minSdkVersion 15
targetSdkVersion 28
versionCode 1
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.brook.app.android.supportlibrary.statelayout">
package="com.brook.app.android.supportlibrary">

<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="com.brook.app.android.supportlibrary.statelayout.MainActivity">
<activity android:name="com.brook.app.android.supportlibrary.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.brook.app.android.supportlibrary.statelayout
package com.brook.app.android.supportlibrary

import android.support.v7.app.AppCompatActivity
import android.os.Bundle
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.brook.app.android.supportlibrary.statelayout;
package com.brook.app.android.supportlibrary;

import android.support.annotation.NonNull;
import android.support.v7.widget.RecyclerView;
Expand Down

0 comments on commit 903de29

Please sign in to comment.