Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Y
YGOMobile-Cn-Ko-En
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
fallenstardust
YGOMobile-Cn-Ko-En
Commits
28f0198d
Commit
28f0198d
authored
Oct 04, 2019
by
kenan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
proj
parent
c8a28cf1
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
43 additions
and
3 deletions
+43
-3
libygo/build.gradle
libygo/build.gradle
+8
-0
libygo/src/main/AndroidManifest.xml
libygo/src/main/AndroidManifest.xml
+33
-2
mobile/build.gradle
mobile/build.gradle
+2
-1
No files found.
libygo/build.gradle
View file @
28f0198d
...
@@ -5,6 +5,7 @@ android {
...
@@ -5,6 +5,7 @@ android {
defaultConfig
{
defaultConfig
{
minSdkVersion
16
minSdkVersion
16
//noinspection ExpiredTargetSdkVersion
targetSdkVersion
22
targetSdkVersion
22
ndk
{
ndk
{
...
@@ -19,6 +20,13 @@ android {
...
@@ -19,6 +20,13 @@ android {
}
}
}
}
sourceSets
{
main
{
assets
.
srcDirs
=
[
'../libcore/src/main/assets'
]
java
.
srcDirs
=
[
'../libcore/src/main/java'
]
res
.
srcDirs
=
[
'../libcore/src/main/res'
]
}
}
}
}
dependencies
{
dependencies
{
...
...
libygo/src/main/AndroidManifest.xml
View file @
28f0198d
<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"
xmlns:tools=
"http://schemas.android.com/tools"
package=
"cn.garymb.ygomobile.so"
>
package=
"cn.garymb.ygomobile.lib"
>
<application
/>
<uses-permission
android:name=
"android.permission.READ_EXTERNAL_STORAGE"
/>
<uses-permission
android:name=
"android.permission.WRITE_EXTERNAL_STORAGE"
/>
<uses-permission
android:name=
"android.permission.ACCESS_WIFI_STATE"
/>
<application>
<activity
android:name=
"cn.garymb.ygomobile.YGOMobileActivity"
android:clearTaskOnLaunch=
"true"
android:configChanges=
"orientation|keyboardHidden|screenSize"
android:exported=
"true"
android:label=
"YGOMobile"
android:process=
":game"
android:launchMode=
"singleTop"
android:screenOrientation=
"sensorLandscape"
android:taskAffinity=
"cn.garymb.ygomobile.game"
android:theme=
"@android:style/Theme.Holo.NoActionBar.Fullscreen"
android:windowSoftInputMode=
"adjustPan"
tools:targetApi=
"honeycomb"
>
<meta-data
android:name=
"android.app.lib_name"
android:value=
"YGOMobile"
/>
<meta-data
android:name=
"android.notch_support"
android:value=
"true"
/>
</activity>
<receiver
android:name=
"cn.garymb.ygomobile.GameReceiver"
android:process=
":game"
>
<intent-filter>
<action
android:name=
"cn.garymb.ygomobile.game.start"
/>
<action
android:name=
"cn.garymb.ygomobile.game.stop"
/>
</intent-filter>
</receiver>
</application>
</manifest>
</manifest>
mobile/build.gradle
View file @
28f0198d
...
@@ -79,7 +79,8 @@ repositories {
...
@@ -79,7 +79,8 @@ repositories {
}
}
dependencies
{
dependencies
{
implementation
'junit:junit:4.12'
implementation
'junit:junit:4.12'
implementation
project
(
':libcore'
)
debugImplementation
project
(
':libygo'
)
releaseImplementation
project
(
':libcore'
)
//support-annotations,support-vector-drawable
//support-annotations,support-vector-drawable
// implementation 'com.android.support:appcompat-v7:' + rootProject.ext.supportVersion
// implementation 'com.android.support:appcompat-v7:' + rootProject.ext.supportVersion
// implementation 'com.android.support:recyclerview-v7:' + rootProject.ext.supportVersion
// implementation 'com.android.support:recyclerview-v7:' + rootProject.ext.supportVersion
...
...
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