Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
C
clx-fluwx
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
openSourceLibrary
clx-fluwx
Commits
289d6c50
提交
289d6c50
authored
10月 12, 2018
作者:
JarvanMo
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
优化android回调
上级
9c91356a
显示空白字符变更
内嵌
并排
正在显示
9 个修改的文件
包含
132 行增加
和
30 行删除
+132
-30
CHANGELOG.md
CHANGELOG.md
+2
-0
AndroidManifest.xml
android/src/main/AndroidManifest.xml
+42
-1
WXEntryActivity.kt
...src/main/kotlin/com/jarvan/fluwx/wxapi/WXEntryActivity.kt
+21
-0
WXPayEntryActivity.kt
.../main/kotlin/com/jarvan/fluwx/wxapi/WXPayEntryActivity.kt
+21
-0
AndroidManifest.xml
example/android/app/src/main/AndroidManifest.xml
+32
-23
MainActivity.kt
...p/src/main/kotlin/com/jarvan/fluwxexample/MainActivity.kt
+1
-2
WXEntryActivity.java
...kotlin/com/jarvan/fluwxexample/wxapi/WXEntryActivity.java
+11
-2
WXPayEntryActivity.java
...lin/com/jarvan/fluwxexample/wxapi/WXPayEntryActivity.java
+1
-1
build.gradle
example/android/build.gradle
+1
-1
没有找到文件。
CHANGELOG.md
浏览文件 @
289d6c50
## 0.3.3
## 0.3.3
*
移除WeChatPayModel
*
移除WeChatPayModel
*
移除ios最小支持。
*
移除ios最小支持。
*
优化
*Android*
微信回调。
*
*build.gradle*
升级到了
*3.2.1*
。
## 0.3.2
## 0.3.2
*
*build.gradle*
升级到了
*3.2.0*
*
*build.gradle*
升级到了
*3.2.0*
...
...
android/src/main/AndroidManifest.xml
浏览文件 @
289d6c50
<manifest
package=
"com.jarvan.fluwx"
>
<manifest
xmlns:android=
"http://schemas.android.com/apk/res/android"
package=
"com.jarvan.fluwx"
>
<uses-permission
android:name=
"android.permission.INTERNET"
/>
<uses-permission
android:name=
"android.permission.ACCESS_NETWORK_STATE"
/>
<uses-permission
android:name=
"android.permission.ACCESS_WIFI_STATE"
/>
<application>
<application>
<activity
android:name=
".wxapi.WXEntryActivity"
android:launchMode=
"singleTop"
android:theme=
"@style/DisablePreviewTheme"
/>
<activity
android:name=
".wxapi.WXPayEntryActivity"
android:launchMode=
"singleTop"
android:theme=
"@style/DisablePreviewTheme"
/>
<activity-alias
android:name=
"${applicationId}.wxapi.WXEntryActivity"
android:exported=
"true"
android:launchMode=
"singleTop"
android:targetActivity=
"com.jarvan.fluwx.wxapi.WXEntryActivity"
android:theme=
"@style/DisablePreviewTheme"
>
<intent-filter>
<action
android:name=
"android.intent.action.VIEW"
/>
<category
android:name=
"android.intent.category.DEFAULT"
/>
<data
android:scheme=
"sdksample"
/>
</intent-filter>
</activity-alias>
<activity-alias
android:name=
"${applicationId}.wxapi.WXPayEntryActivity"
android:exported=
"true"
android:launchMode=
"singleTop"
android:targetActivity=
"com.jarvan.fluwx.wxapi.WXPayEntryActivity"
android:theme=
"@style/DisablePreviewTheme"
>
<intent-filter>
<action
android:name=
"android.intent.action.VIEW"
/>
<category
android:name=
"android.intent.category.DEFAULT"
/>
<data
android:scheme=
"sdksample"
/>
</intent-filter>
</activity-alias>
</application>
</application>
</manifest>
</manifest>
android/src/main/kotlin/com/jarvan/fluwx/wxapi/WXEntryActivity.kt
0 → 100644
浏览文件 @
289d6c50
/*
* Copyright (C) 2018 The OpenFlutter Organization
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package
com.jarvan.fluwx.wxapi
open
class
WXEntryActivity
:
FluwxWXEntryActivity
()
\ No newline at end of file
android/src/main/kotlin/com/jarvan/fluwx/wxapi/WXPayEntryActivity.kt
0 → 100644
浏览文件 @
289d6c50
/*
* Copyright (C) 2018 The OpenFlutter Organization
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package
com.jarvan.fluwx.wxapi
open
class
WXPayEntryActivity
:
FluwxWXEntryActivity
()
\ No newline at end of file
example/android/app/src/main/AndroidManifest.xml
浏览文件 @
289d6c50
<manifest
xmlns:android=
"http://schemas.android.com/apk/res/android"
<manifest
xmlns:android=
"http://schemas.android.com/apk/res/android"
xmlns:tools=
"http://schemas.android.com/tools"
package=
"com.jarvan.fluwxexample"
>
package=
"com.jarvan.fluwxexample"
>
<!-- The INTERNET permission is required for development. Specifically,
<!-- The INTERNET permission is required for development. Specifically,
...
@@ -15,7 +16,8 @@
...
@@ -15,7 +16,8 @@
<application
<application
android:name=
"io.flutter.app.FlutterApplication"
android:name=
"io.flutter.app.FlutterApplication"
android:label=
"fluwx_example"
android:label=
"fluwx_example"
android:icon=
"@mipmap/ic_launcher"
>
android:icon=
"@mipmap/ic_launcher"
tools:ignore=
"GoogleAppIndexingWarning"
>
<activity
<activity
android:name=
".MainActivity"
android:name=
".MainActivity"
android:launchMode=
"singleTop"
android:launchMode=
"singleTop"
...
@@ -35,29 +37,36 @@
...
@@ -35,29 +37,36 @@
<category
android:name=
"android.intent.category.LAUNCHER"
/>
<category
android:name=
"android.intent.category.LAUNCHER"
/>
</intent-filter>
</intent-filter>
</activity>
</activity>
<activity
<!--<activity android:name=".wxapi.WXEntryActivity"-->
android:name=
"net.sourceforge.simcpux.wxapi.WXEntryActivity"
<!--android:theme="@style/DisablePreviewTheme"-->
android:theme=
"@style/DisablePreviewTheme"
<!--/>-->
android:exported=
"true"
<!--<activity android:name=".wxapi.WXPayEntryActivity"-->
android:launchMode=
"singleTop"
>
<!--android:theme="@style/DisablePreviewTheme"/>-->
<!--<activity-alias-->
<!--android:name="${applicationId}.wxapi.WXEntryActivity"-->
<!--android:exported="true"-->
<!--tools:replace="android:targetActivity"-->
<!--android:targetActivity=".wxapi.WXEntryActivity"-->
<!--android:launchMode="singleTop">-->
<intent-filter>
<!--<intent-filter>-->
<action
android:name=
"android.intent.action.VIEW"
/>
<!--<action android:name="android.intent.action.VIEW" />-->
<category
android:name=
"android.intent.category.DEFAULT"
/>
<!--<category android:name="android.intent.category.DEFAULT" />-->
<data
android:scheme=
"sdksample"
/>
<!--<data android:scheme="sdksample" />-->
</intent-filter>
<!--</intent-filter>-->
</activity>
<!--</activity-alias>-->
<activity
<!--<activity-alias-->
android:name=
"net.sourceforge.simcpux.wxapi.WXPayEntryActivity"
<!--tools:replace="android:targetActivity"-->
android:theme=
"@style/DisablePreviewTheme"
<!--android:name="${applicationId}.wxapi.WXPayEntryActivity"-->
android:exported=
"true"
<!--android:exported="true"-->
android:launchMode=
"singleTop"
>
<!--android:targetActivity=".wxapi.WXPayEntryActivity"-->
<!--android:launchMode="singleTop">-->
<
intent-filter
>
<
!--<intent-filter>--
>
<
action
android:name=
"android.intent.action.VIEW"
/
>
<
!--<action android:name="android.intent.action.VIEW" />--
>
<
category
android:name=
"android.intent.category.DEFAULT"
/
>
<
!--<category android:name="android.intent.category.DEFAULT" />--
>
<
data
android:scheme=
"sdksample"
/
>
<
!--<data android:scheme="sdksample" />--
>
<
/intent-filter
>
<
!--</intent-filter>--
>
<
/activity
>
<
!--</activity-alias>--
>
</application>
</application>
</manifest>
</manifest>
example/android/app/src/main/kotlin/com/jarvan/fluwxexample/MainActivity.kt
浏览文件 @
289d6c50
package
com.jarvan.fluwxexample
package
com.jarvan.fluwxexample
import
android.os.Bundle
import
android.os.Bundle
import
net.sourceforge.simcpux.wxapi.WXEntryActivity
import
net.sourceforge.simcpux.wxapi.WXPayEntryActivity
import
io.flutter.app.FlutterActivity
import
io.flutter.app.FlutterActivity
import
io.flutter.plugins.GeneratedPluginRegistrant
import
io.flutter.plugins.GeneratedPluginRegistrant
...
...
example/android/app/src/main/kotlin/
net/sourceforge/simcpux
/wxapi/WXEntryActivity.java
→
example/android/app/src/main/kotlin/
com/jarvan/fluwxexample
/wxapi/WXEntryActivity.java
浏览文件 @
289d6c50
package
net
.
sourceforge
.
simcpux
.
wxapi
;
package
com
.
jarvan
.
fluwxexample
.
wxapi
;
import
android.os.Bundle
;
import
android.widget.Toast
;
import
com.jarvan.fluwx.wxapi.FluwxWXEntryActivity
;
import
com.jarvan.fluwx.wxapi.FluwxWXEntryActivity
;
import
org.jetbrains.annotations.Nullable
;
public
class
WXEntryActivity
extends
FluwxWXEntryActivity
{
public
class
WXEntryActivity
extends
FluwxWXEntryActivity
{
@Override
public
void
onCreate
(
@Nullable
Bundle
savedInstanceState
)
{
super
.
onCreate
(
savedInstanceState
);
}
}
}
\ No newline at end of file
example/android/app/src/main/kotlin/
net/sourceforge/simcpux
/wxapi/WXPayEntryActivity.java
→
example/android/app/src/main/kotlin/
com/jarvan/fluwxexample
/wxapi/WXPayEntryActivity.java
浏览文件 @
289d6c50
package
net
.
sourceforge
.
simcpux
.
wxapi
;
package
com
.
jarvan
.
fluwxexample
.
wxapi
;
import
com.jarvan.fluwx.wxapi.FluwxWXEntryActivity
;
import
com.jarvan.fluwx.wxapi.FluwxWXEntryActivity
;
...
...
example/android/build.gradle
浏览文件 @
289d6c50
...
@@ -6,7 +6,7 @@ buildscript {
...
@@ -6,7 +6,7 @@ buildscript {
}
}
dependencies
{
dependencies
{
classpath
'com.android.tools.build:gradle:3.2.
0
'
classpath
'com.android.tools.build:gradle:3.2.
1
'
classpath
"org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath
"org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
}
}
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论