Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
component
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
王涛55
component
Commits
b35592d0
Commit
b35592d0
authored
Sep 25, 2019
by
王涛55
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix bug
parent
4310c4a1
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
23 additions
and
32 deletions
+23
-32
ModuleProject/.idea/codeStyles/Project.xml
+0
-25
ModuleProject/app/src/main/res/layout/app_test.xml
+1
-1
ModuleProject/app_login/build.gradle
+15
-0
ModuleProject/app_login/src/main/java/com/hikcreate/login/moduel/router/action/change/ChangePwd.java
+1
-1
ModuleProject/app_passport/src/main/java/com/hikcreate/init/PassPortAppLogic.java
+5
-4
ModuleProject/lib_module_common/src/main/java/com/hikcreate/module_router/ErrorAction.java
+1
-1
No files found.
ModuleProject/.idea/codeStyles/Project.xml
View file @
b35592d0
...
@@ -64,31 +64,6 @@
...
@@ -64,31 +64,6 @@
<JetCodeStyleSettings>
<JetCodeStyleSettings>
<option
name=
"CODE_STYLE_DEFAULTS"
value=
"KOTLIN_OFFICIAL"
/>
<option
name=
"CODE_STYLE_DEFAULTS"
value=
"KOTLIN_OFFICIAL"
/>
</JetCodeStyleSettings>
</JetCodeStyleSettings>
<Objective-C-extensions>
<file>
<option
name=
"com.jetbrains.cidr.lang.util.OCDeclarationKind"
value=
"Import"
/>
<option
name=
"com.jetbrains.cidr.lang.util.OCDeclarationKind"
value=
"Macro"
/>
<option
name=
"com.jetbrains.cidr.lang.util.OCDeclarationKind"
value=
"Typedef"
/>
<option
name=
"com.jetbrains.cidr.lang.util.OCDeclarationKind"
value=
"Enum"
/>
<option
name=
"com.jetbrains.cidr.lang.util.OCDeclarationKind"
value=
"Constant"
/>
<option
name=
"com.jetbrains.cidr.lang.util.OCDeclarationKind"
value=
"Global"
/>
<option
name=
"com.jetbrains.cidr.lang.util.OCDeclarationKind"
value=
"Struct"
/>
<option
name=
"com.jetbrains.cidr.lang.util.OCDeclarationKind"
value=
"FunctionPredecl"
/>
<option
name=
"com.jetbrains.cidr.lang.util.OCDeclarationKind"
value=
"Function"
/>
</file>
<class>
<option
name=
"com.jetbrains.cidr.lang.util.OCDeclarationKind"
value=
"Property"
/>
<option
name=
"com.jetbrains.cidr.lang.util.OCDeclarationKind"
value=
"Synthesize"
/>
<option
name=
"com.jetbrains.cidr.lang.util.OCDeclarationKind"
value=
"InitMethod"
/>
<option
name=
"com.jetbrains.cidr.lang.util.OCDeclarationKind"
value=
"StaticMethod"
/>
<option
name=
"com.jetbrains.cidr.lang.util.OCDeclarationKind"
value=
"InstanceMethod"
/>
<option
name=
"com.jetbrains.cidr.lang.util.OCDeclarationKind"
value=
"DeallocMethod"
/>
</class>
<extensions>
<pair
source=
"cpp"
header=
"h"
fileNamingConvention=
"NONE"
/>
<pair
source=
"c"
header=
"h"
fileNamingConvention=
"NONE"
/>
</extensions>
</Objective-C-extensions>
<XML>
<XML>
<option
name=
"XML_KEEP_LINE_BREAKS"
value=
"false"
/>
<option
name=
"XML_KEEP_LINE_BREAKS"
value=
"false"
/>
<option
name=
"XML_ALIGN_ATTRIBUTES"
value=
"false"
/>
<option
name=
"XML_ALIGN_ATTRIBUTES"
value=
"false"
/>
...
...
ModuleProject/app/src/main/res/layout/app_test.xml
View file @
b35592d0
...
@@ -11,7 +11,7 @@
...
@@ -11,7 +11,7 @@
<Button
<Button
android:layout_width=
"match_parent"
android:layout_width=
"match_parent"
android:layout_height=
"wrap_content"
android:layout_height=
"wrap_content"
android:text=
"
去登录模块
"
android:text=
"
获取用户信息
"
android:id=
"@+id/mBtnLogin"
android:id=
"@+id/mBtnLogin"
/>
/>
...
...
ModuleProject/app_login/build.gradle
View file @
b35592d0
...
@@ -59,6 +59,21 @@ android {
...
@@ -59,6 +59,21 @@ android {
}
}
dexOptions
{
dexOptions
{
javaMaxHeapSize
"4g"
preDexLibraries
=
false
jumboMode
=
true
}
dataBinding
{
enabled
=
true
}
lintOptions
{
abortOnError
false
}
dexOptions
{
preDexLibraries
=
false
preDexLibraries
=
false
}
}
}
}
...
...
ModuleProject/app_login/src/main/java/com/hikcreate/login/moduel/router/action/change/ChangePwd.java
View file @
b35592d0
...
@@ -16,7 +16,7 @@ import java.util.HashMap;
...
@@ -16,7 +16,7 @@ import java.util.HashMap;
*/
*/
public
class
ChangePwd
extends
ModuleAction
{
public
class
ChangePwd
extends
ModuleAction
{
@Override
@Override
public
boolean
isAsync
(
Context
context
,
HashMap
<
String
,
String
>
requestData
)
{
public
boolean
isAsync
(
HashMap
<
String
,
String
>
requestData
)
{
return
false
;
return
false
;
}
}
...
...
ModuleProject/app_passport/src/main/java/com/hikcreate/init/PassPortAppLogic.java
View file @
b35592d0
package
com
.
hikcreate
.
init
;
package
com
.
hikcreate
.
init
;
import
android.content.Context
;
import
android.content.res.Configuration
;
import
android.content.res.Configuration
;
import
android.util.Log
;
import
android.util.Log
;
...
@@ -14,22 +15,22 @@ import com.hikcreate.base.BaseAppLogic;
...
@@ -14,22 +15,22 @@ import com.hikcreate.base.BaseAppLogic;
*/
*/
public
class
PassPortAppLogic
extends
BaseAppLogic
{
public
class
PassPortAppLogic
extends
BaseAppLogic
{
@Override
@Override
public
void
onCreate
()
{
public
void
onCreate
(
Context
context
)
{
Log
.
v
(
"LoginAppLogic"
,
"onCreate--------------------->"
);
Log
.
v
(
"LoginAppLogic"
,
"onCreate--------------------->"
);
}
}
@Override
@Override
public
void
onTerminate
()
{
public
void
onTerminate
(
Context
context
)
{
Log
.
v
(
"LoginAppLogic"
,
"onTerminate--------------------->"
);
Log
.
v
(
"LoginAppLogic"
,
"onTerminate--------------------->"
);
}
}
@Override
@Override
public
void
onLowMemory
()
{
public
void
onLowMemory
(
Context
context
)
{
Log
.
v
(
"LoginAppLogic"
,
"onLowMemory--------------------->"
);
Log
.
v
(
"LoginAppLogic"
,
"onLowMemory--------------------->"
);
}
}
@Override
@Override
public
void
onConfigurationChanged
(
Configuration
newConfig
)
{
public
void
onConfigurationChanged
(
Con
text
context
,
Con
figuration
newConfig
)
{
Log
.
v
(
"LoginAppLogic"
,
"onConfigurationChanged--------------------->"
);
Log
.
v
(
"LoginAppLogic"
,
"onConfigurationChanged--------------------->"
);
}
}
}
}
ModuleProject/lib_module_common/src/main/java/com/hikcreate/module_router/ErrorAction.java
View file @
b35592d0
...
@@ -27,7 +27,7 @@ public class ErrorAction extends ModuleAction {
...
@@ -27,7 +27,7 @@ public class ErrorAction extends ModuleAction {
}
}
@Override
@Override
public
boolean
isAsync
(
Context
context
,
HashMap
<
String
,
String
>
requestData
)
{
public
boolean
isAsync
(
HashMap
<
String
,
String
>
requestData
)
{
return
mAsync
;
return
mAsync
;
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment