Commit f5decb73 by Yu_Tung

修改MideaStore出現已經刪除的影片

parent 1f7eb234
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<project version="4"> <project version="4">
<component name="ProjectRootManager" version="2" languageLevel="JDK_1_7" project-jdk-name="1.8" project-jdk-type="JavaSDK"> <component name="ProjectRootManager" version="2" languageLevel="JDK_1_8" project-jdk-name="1.8" project-jdk-type="JavaSDK">
<output url="file://$PROJECT_DIR$/build/classes" /> <output url="file://$PROJECT_DIR$/build/classes" />
</component> </component>
<component name="ProjectType"> <component name="ProjectType">
......
...@@ -32,6 +32,7 @@ ...@@ -32,6 +32,7 @@
<activity android:name=".ui.main.MainActivity" <activity android:name=".ui.main.MainActivity"
android:screenOrientation="portrait"/> android:screenOrientation="portrait"/>
<provider <provider
android:name="androidx.core.content.FileProvider" android:name="androidx.core.content.FileProvider"
android:authorities="${applicationId}.provider" android:authorities="${applicationId}.provider"
......
...@@ -33,7 +33,7 @@ public class LoginPresenter<V extends LoginContract.View> implements LoginContra ...@@ -33,7 +33,7 @@ public class LoginPresenter<V extends LoginContract.View> implements LoginContra
@Override @Override
public void onLogin(String account, String password) { public void onLogin(String account, String password) {
String url = view.getResourceString(R.string.api_on_Login); String url = view.getResourceString(R.string.api_on_Login);
// LoginRequest mLoginRequest = new LoginRequest(LOGIN_AUTHORIZED_ID, "N000158385", "781122222"); // LoginRequest mLoginRequest = new LoginRequest(LOGIN_AUTHORIZED_ID, "N000042089", "566345");
LoginRequest mLoginRequest = new LoginRequest(LOGIN_AUTHORIZED_ID, account, password); LoginRequest mLoginRequest = new LoginRequest(LOGIN_AUTHORIZED_ID, account, password);
compositeDisposable.add(api.onLogin(url, mLoginRequest) compositeDisposable.add(api.onLogin(url, mLoginRequest)
.subscribeOn(schedulerProviderImp.io()) .subscribeOn(schedulerProviderImp.io())
......
...@@ -39,7 +39,7 @@ ...@@ -39,7 +39,7 @@
android:layout_width="0dp" android:layout_width="0dp"
android:layout_height="0dp" android:layout_height="0dp"
android:hint="@string/login_account_hint" android:hint="@string/login_account_hint"
android:text="N000042089"
android:textColorHint="@color/white" android:textColorHint="@color/white"
android:paddingStart="100dp" android:paddingStart="100dp"
app:layout_constraintWidth_percent="0.9" app:layout_constraintWidth_percent="0.9"
...@@ -56,7 +56,7 @@ ...@@ -56,7 +56,7 @@
android:layout_width="0dp" android:layout_width="0dp"
android:layout_height="0dp" android:layout_height="0dp"
android:hint="@string/login_password_hint" android:hint="@string/login_password_hint"
android:text="566345"
android:inputType="textPassword" android:inputType="textPassword"
android:textColorHint="@color/white" android:textColorHint="@color/white"
android:paddingStart="100dp" android:paddingStart="100dp"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment