Skip to content

Commit f559c74

Browse files
authored
Merge pull request alibaba#206 from Nealyang/master
登陆
2 parents 7fdca1e + 58ef9c6 commit f559c74

24 files changed

+643
-83
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Language: [English](https://github.com/alibaba/flutter-go/blob/master/README-en.
2525

2626
android下载地址:
2727

28-
<img src="https://img.alicdn.com/tfs/TB1jGgfQ7voK1RjSZFNXXcxMVXa-438-426.png" width="200px">
28+
<img src="https://img.alicdn.com/tfs/TB1ylxGTMHqK1RjSZFgXXa7JXXa-436-432.png" width="200px">
2929

3030
iphone下载地址:
3131
暂无

android/.project

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>android</name>
4+
<comment>Project android created by Buildship.</comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>org.eclipse.buildship.core.gradleprojectbuilder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
</buildSpec>
14+
<natures>
15+
<nature>org.eclipse.buildship.core.gradleprojectnature</nature>
16+
</natures>
17+
</projectDescription>
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
connection.project.dir=
2+
eclipse.preferences.version=1

android/app/.classpath

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8/"/>
4+
<classpathentry kind="con" path="org.eclipse.buildship.core.gradleclasspathcontainer"/>
5+
<classpathentry kind="output" path="bin/default"/>
6+
</classpath>

android/app/.project

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>app</name>
4+
<comment>Project app created by Buildship.</comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>org.eclipse.jdt.core.javabuilder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
<buildCommand>
14+
<name>org.eclipse.buildship.core.gradleprojectbuilder</name>
15+
<arguments>
16+
</arguments>
17+
</buildCommand>
18+
</buildSpec>
19+
<natures>
20+
<nature>org.eclipse.jdt.core.javanature</nature>
21+
<nature>org.eclipse.buildship.core.gradleprojectnature</nature>
22+
</natures>
23+
</projectDescription>
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
connection.project.dir=..
2+
eclipse.preferences.version=1

assets/app.db

4 KB
Binary file not shown.

assets/images/FlutterGo.png

1.04 KB
Loading

ios/Runner.xcodeproj/project.pbxproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -511,6 +511,7 @@
511511
buildSettings = {
512512
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
513513
ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = Launch2;
514+
CODE_SIGN_IDENTITY = "iPhone Distribution";
514515
CODE_SIGN_STYLE = Manual;
515516
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
516517
DEVELOPMENT_TEAM = 4WLT68XRNA;
@@ -527,7 +528,7 @@
527528
);
528529
PRODUCT_BUNDLE_IDENTIFIER = com.alibaba.fluttergo;
529530
PRODUCT_NAME = "$(TARGET_NAME)";
530-
PROVISIONING_PROFILE_SPECIFIER = "FlutterGO-alibaba-develop";
531+
PROVISIONING_PROFILE_SPECIFIER = FlutterGO_alibaba_distribution_app_store;
531532
VERSIONING_SYSTEM = "apple-generic";
532533
};
533534
name = Debug;

lib/api/api.dart

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
class Api{
2+
// static const String BASE_URL = 'http://127.0.0.1:6001/';
3+
static const String BASE_URL = 'http://flutter-go.alibaba.net/';
4+
5+
static const String DO_LOGIN = BASE_URL+'doLogin';//登陆
6+
7+
static const String CHECK_LOGIN = BASE_URL+'checkLogin';//验证登陆
8+
9+
static const String LOGOUT = BASE_URL+'logout';//退出登陆
10+
}

0 commit comments

Comments
 (0)