Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Y
YGOMobile
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
Commits
6708ef77
Commit
6708ef77
authored
Dec 19, 2022
by
fallenstardust
Committed by
GitHub
Dec 19, 2022
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #80 from zhuhongbozhuhongbo/webcrawler
add webcrawler to show ex-card
parents
f58063a9
e8655f1a
Changes
11
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
561 additions
and
10 deletions
+561
-10
mobile/build.gradle
mobile/build.gradle
+2
-0
mobile/src/main/AndroidManifest.xml
mobile/src/main/AndroidManifest.xml
+8
-0
mobile/src/main/java/cn/garymb/ygomobile/ex_card/ExCard.java
mobile/src/main/java/cn/garymb/ygomobile/ex_card/ExCard.java
+70
-0
mobile/src/main/java/cn/garymb/ygomobile/ex_card/ExCardActivity.java
...main/java/cn/garymb/ygomobile/ex_card/ExCardActivity.java
+249
-0
mobile/src/main/java/cn/garymb/ygomobile/ex_card/ExCardListAdapter.java
...n/java/cn/garymb/ygomobile/ex_card/ExCardListAdapter.java
+41
-0
mobile/src/main/java/cn/garymb/ygomobile/ui/home/HomeFragment.java
...c/main/java/cn/garymb/ygomobile/ui/home/HomeFragment.java
+87
-10
mobile/src/main/res/layout/activity_ex_card.xml
mobile/src/main/res/layout/activity_ex_card.xml
+39
-0
mobile/src/main/res/layout/item_ex_card.xml
mobile/src/main/res/layout/item_ex_card.xml
+62
-0
mobile/src/main/res/values-ko/strings.xml
mobile/src/main/res/values-ko/strings.xml
+1
-0
mobile/src/main/res/values-zh/strings.xml
mobile/src/main/res/values-zh/strings.xml
+1
-0
mobile/src/main/res/values/strings.xml
mobile/src/main/res/values/strings.xml
+1
-0
No files found.
mobile/build.gradle
View file @
6708ef77
...
@@ -131,4 +131,6 @@ dependencies {
...
@@ -131,4 +131,6 @@ dependencies {
implementation
'de.hdodenhof:circleimageview:2.2.0'
implementation
'de.hdodenhof:circleimageview:2.2.0'
//决斗助手
//决斗助手
implementation
'com.github.feihuaduo:YGODuelAssistantLib:1.0'
implementation
'com.github.feihuaduo:YGODuelAssistantLib:1.0'
// jsoup HTML parser library @ https://jsoup.org/
implementation
'org.jsoup:jsoup:1.15.3'
}
}
mobile/src/main/AndroidManifest.xml
View file @
6708ef77
...
@@ -145,6 +145,14 @@
...
@@ -145,6 +145,14 @@
<activity
<activity
android:name=
"cn.garymb.ygomobile.ui.activities.PermissionsActivity"
android:name=
"cn.garymb.ygomobile.ui.activities.PermissionsActivity"
android:theme=
"@style/TranslucentTheme"
/>
android:theme=
"@style/TranslucentTheme"
/>
<!-- android:screenOrientation="landscape"-->
<activity
android:name=
"cn.garymb.ygomobile.ex_card.ExCardActivity"
android:theme=
"@style/AppTheme.Mycard"
android:launchMode=
"singleTop"
/>
<!-- 为防止Service被系统回收,可以尝试通过提高服务的优先级解决,1000是最高优先级,数字越小,优先级越低 -->
<!-- 为防止Service被系统回收,可以尝试通过提高服务的优先级解决,1000是最高优先级,数字越小,优先级越低 -->
<!--android:priority="1000"-->
<!--android:priority="1000"-->
<service
<service
...
...
mobile/src/main/java/cn/garymb/ygomobile/ex_card/ExCard.java
0 → 100644
View file @
6708ef77
package
cn.garymb.ygomobile.ex_card
;
import
android.os.Parcel
;
import
android.os.Parcelable
;
public
class
ExCard
implements
Parcelable
{
private
String
name
;
private
String
imageUrl
;
private
String
description
;
public
ExCard
(
String
name
,
String
imageUrl
,
String
description
)
{
this
.
name
=
name
;
this
.
imageUrl
=
imageUrl
;
this
.
description
=
description
;
}
protected
ExCard
(
Parcel
in
)
{
name
=
in
.
readString
();
imageUrl
=
in
.
readString
();
description
=
in
.
readString
();
}
public
static
final
Creator
<
ExCard
>
CREATOR
=
new
Creator
<
ExCard
>()
{
@Override
public
ExCard
createFromParcel
(
Parcel
in
)
{
return
new
ExCard
(
in
);
}
@Override
public
ExCard
[]
newArray
(
int
size
)
{
return
new
ExCard
[
size
];
}
};
public
String
getName
()
{
return
name
;
}
public
void
setName
(
String
name
)
{
this
.
name
=
name
;
}
public
String
getImageUrl
()
{
return
imageUrl
;
}
public
void
setImageUrl
(
String
imageUrl
)
{
this
.
imageUrl
=
imageUrl
;
}
public
String
getDescription
()
{
return
description
;
}
public
void
setDescription
(
String
description
)
{
this
.
description
=
description
;
}
@Override
public
int
describeContents
()
{
return
0
;
}
@Override
public
void
writeToParcel
(
Parcel
dest
,
int
flags
)
{
dest
.
writeString
(
this
.
name
);
dest
.
writeString
(
this
.
imageUrl
);
dest
.
writeString
(
this
.
description
);
}
}
mobile/src/main/java/cn/garymb/ygomobile/ex_card/ExCardActivity.java
0 → 100644
View file @
6708ef77
This diff is collapsed.
Click to expand it.
mobile/src/main/java/cn/garymb/ygomobile/ex_card/ExCardListAdapter.java
0 → 100644
View file @
6708ef77
package
cn.garymb.ygomobile.ex_card
;
import
android.graphics.drawable.Drawable
;
import
android.widget.ImageView
;
import
com.bumptech.glide.RequestBuilder
;
import
com.chad.library.adapter.base.BaseQuickAdapter
;
import
com.chad.library.adapter.base.viewholder.BaseViewHolder
;
import
java.util.List
;
import
cn.garymb.ygomobile.lite.R
;
import
cn.garymb.ygomobile.loader.ImageLoader
;
import
cn.garymb.ygomobile.utils.glide.GlideCompat
;
import
cn.garymb.ygomobile.utils.glide.StringSignature
;
public
class
ExCardListAdapter
extends
BaseQuickAdapter
<
ExCard
,
BaseViewHolder
>
{
private
ImageLoader
imageLoader
;
public
ExCardListAdapter
(
int
layoutResId
,
List
<
ExCard
>
data
)
{
super
(
layoutResId
,
data
);
//use the imageLoader to load image from url
imageLoader
=
new
ImageLoader
(
true
);
}
@Override
protected
void
convert
(
BaseViewHolder
helper
,
ExCard
item
)
{
helper
.
setText
(
R
.
id
.
ex_card_name
,
item
.
getName
());
helper
.
setText
(
R
.
id
.
ex_card_description
,
item
.
getDescription
());
ImageView
imageview
=
helper
.
getView
(
R
.
id
.
ex_card_image
);
//the function cn.garymb.ygomobile.loader.ImageLoader.bindT(...)
//cn.garymb.ygomobile.loader.ImageLoader.setDefaults(...)
//is a private function,so I copied the content of it to here
RequestBuilder
<
Drawable
>
resource
=
GlideCompat
.
with
(
imageview
.
getContext
()).
load
(
item
.
getImageUrl
());
resource
.
placeholder
(
R
.
drawable
.
unknown
);
resource
.
error
(
R
.
drawable
.
unknown
);
resource
.
into
(
imageview
);
}
}
mobile/src/main/java/cn/garymb/ygomobile/ui/home/HomeFragment.java
View file @
6708ef77
...
@@ -43,6 +43,10 @@ import com.tubb.smrv.SwipeMenuRecyclerView;
...
@@ -43,6 +43,10 @@ import com.tubb.smrv.SwipeMenuRecyclerView;
import
org.greenrobot.eventbus.EventBus
;
import
org.greenrobot.eventbus.EventBus
;
import
org.greenrobot.eventbus.Subscribe
;
import
org.greenrobot.eventbus.Subscribe
;
import
org.greenrobot.eventbus.ThreadMode
;
import
org.greenrobot.eventbus.ThreadMode
;
import
org.jsoup.Jsoup
;
import
org.jsoup.nodes.Document
;
import
org.jsoup.nodes.Element
;
import
org.jsoup.select.Elements
;
import
java.io.File
;
import
java.io.File
;
import
java.io.FileInputStream
;
import
java.io.FileInputStream
;
...
@@ -60,6 +64,8 @@ import cn.garymb.ygomobile.bean.Deck;
...
@@ -60,6 +64,8 @@ import cn.garymb.ygomobile.bean.Deck;
import
cn.garymb.ygomobile.bean.ServerInfo
;
import
cn.garymb.ygomobile.bean.ServerInfo
;
import
cn.garymb.ygomobile.bean.ServerList
;
import
cn.garymb.ygomobile.bean.ServerList
;
import
cn.garymb.ygomobile.bean.events.ServerInfoEvent
;
import
cn.garymb.ygomobile.bean.events.ServerInfoEvent
;
import
cn.garymb.ygomobile.ex_card.ExCardActivity
;
import
cn.garymb.ygomobile.ex_card.ExCard
;
import
cn.garymb.ygomobile.lite.BuildConfig
;
import
cn.garymb.ygomobile.lite.BuildConfig
;
import
cn.garymb.ygomobile.lite.R
;
import
cn.garymb.ygomobile.lite.R
;
import
cn.garymb.ygomobile.loader.ImageLoader
;
import
cn.garymb.ygomobile.loader.ImageLoader
;
...
@@ -522,12 +528,12 @@ public class HomeFragment extends BaseFragemnt implements OnDuelAssistantListene
...
@@ -522,12 +528,12 @@ public class HomeFragment extends BaseFragemnt implements OnDuelAssistantListene
@Override
@Override
public
void
onSaveDeck
(
Uri
uri
,
List
<
Integer
>
mainList
,
List
<
Integer
>
exList
,
List
<
Integer
>
sideList
,
boolean
isCompleteDeck
,
String
exception
,
int
id
)
{
public
void
onSaveDeck
(
Uri
uri
,
List
<
Integer
>
mainList
,
List
<
Integer
>
exList
,
List
<
Integer
>
sideList
,
boolean
isCompleteDeck
,
String
exception
,
int
id
)
{
saveDeck
(
uri
,
mainList
,
exList
,
sideList
,
isCompleteDeck
,
exception
);
saveDeck
(
uri
,
mainList
,
exList
,
sideList
,
isCompleteDeck
,
exception
);
}
}
public
void
saveDeck
(
Uri
uri
,
List
<
Integer
>
mainList
,
List
<
Integer
>
exList
,
List
<
Integer
>
sideList
,
boolean
isCompleteDeck
,
String
exception
)
{
public
void
saveDeck
(
Uri
uri
,
List
<
Integer
>
mainList
,
List
<
Integer
>
exList
,
List
<
Integer
>
sideList
,
boolean
isCompleteDeck
,
String
exception
)
{
if
(!
TextUtils
.
isEmpty
(
exception
)){
if
(!
TextUtils
.
isEmpty
(
exception
))
{
YGOUtil
.
show
(
"卡组解析失败,原因为:"
+
exception
);
YGOUtil
.
show
(
"卡组解析失败,原因为:"
+
exception
);
return
;
return
;
}
}
DialogPlus
dialog
=
new
DialogPlus
(
getContext
());
DialogPlus
dialog
=
new
DialogPlus
(
getContext
());
...
@@ -696,12 +702,83 @@ public class HomeFragment extends BaseFragemnt implements OnDuelAssistantListene
...
@@ -696,12 +702,83 @@ public class HomeFragment extends BaseFragemnt implements OnDuelAssistantListene
YGOStarter
.
startGame
(
getActivity
(),
null
,
"-k"
,
"-s"
);
YGOStarter
.
startGame
(
getActivity
(),
null
,
"-k"
,
"-s"
);
break
;
break
;
case
R
.
id
.
action_download_ex
:
case
R
.
id
.
action_download_ex
:
String
aurl
=
Constants
.
URL_YGO233_ADVANCE
;
//using Web crawler to extract the information of pre card
if
(
ll_new_notice
.
getVisibility
()
==
View
.
VISIBLE
)
{
final
DialogPlus
dialog_read_ex
=
DialogPlus
.
show
(
getContext
(),
null
,
getContext
().
getString
(
R
.
string
.
fetch_ex_card
));
aurl
=
aurl
+
"#pre_update_title"
;
VUiKit
.
defer
().
when
(()
->
{
}
String
aurl
=
Constants
.
URL_YGO233_ADVANCE
;
WebActivity
.
open
(
getContext
(),
getString
(
R
.
string
.
action_download_expansions
),
aurl
);
//Connect to the website
ll_new_notice
.
setVisibility
(
View
.
GONE
);
Document
document
=
Jsoup
.
connect
(
aurl
).
get
();
Element
pre_card_content
=
document
.
getElementById
(
"pre_release_cards"
);
Element
tbody
=
pre_card_content
.
getElementsByTag
(
"tbody"
).
get
(
0
);
Elements
cards
=
tbody
.
getElementsByTag
(
"tr"
);
if
(
cards
.
size
()
>
300
)
{
//Considering the efficiency of html parse, if the size of
// pre cards list is to large, return null directly.
return
null
;
}
ArrayList
<
ExCard
>
exCards
=
new
ArrayList
<>();
for
(
Element
card
:
cards
)
{
Elements
card_attributes
=
card
.
getElementsByTag
(
"td"
);
String
imageUrl
=
card_attributes
.
get
(
0
).
getElementsByTag
(
"a"
).
attr
(
"href"
);
String
name
=
card_attributes
.
get
(
1
).
text
();
String
description
=
card_attributes
.
get
(
2
).
text
();
ExCard
exCard
=
new
ExCard
(
name
,
imageUrl
,
description
);
exCards
.
add
(
exCard
);
}
Log
.
i
(
"webCrawler"
,
exCards
.
toString
());
if
(
exCards
.
isEmpty
())
{
return
null
;
}
else
{
return
exCards
;
}
}).
fail
((
e
)
->
{
//关闭异常
if
(
dialog_read_ex
.
isShowing
())
{
try
{
dialog_read_ex
.
dismiss
();
}
catch
(
Exception
ex
)
{
}
}
//If the crawler process failed, open webActivity
String
aurl
=
Constants
.
URL_YGO233_ADVANCE
;
if
(
ll_new_notice
.
getVisibility
()
==
View
.
VISIBLE
)
{
aurl
=
aurl
+
"#pre_update_title"
;
}
WebActivity
.
open
(
getContext
(),
getString
(
R
.
string
.
action_download_expansions
),
aurl
);
ll_new_notice
.
setVisibility
(
View
.
GONE
);
Log
.
i
(
"webCrawler"
,
"webCrawler fail"
);
}).
done
((
tmp
)
->
{
if
(
tmp
!=
null
)
{
Log
.
i
(
"webCrawler"
,
"webCrawler done"
);
Intent
intent
=
new
Intent
(
getActivity
(),
ExCardActivity
.
class
);
//intent.putExtra("exCards", tmp);
intent
.
putParcelableArrayListExtra
(
"exCards"
,
tmp
);
startActivity
(
intent
);
}
else
{
//If the crawler process cannot return right ex-card data,
//open webActivity
String
aurl
=
Constants
.
URL_YGO233_ADVANCE
;
if
(
ll_new_notice
.
getVisibility
()
==
View
.
VISIBLE
)
{
aurl
=
aurl
+
"#pre_update_title"
;
}
WebActivity
.
open
(
getContext
(),
getString
(
R
.
string
.
action_download_expansions
),
aurl
);
ll_new_notice
.
setVisibility
(
View
.
GONE
);
Log
.
i
(
"webCrawler"
,
"webCrawler cannot return ex-card data"
);
}
//关闭异常
if
(
dialog_read_ex
.
isShowing
())
{
try
{
dialog_read_ex
.
dismiss
();
Log
.
i
(
"webCrawler"
,
"dialog close"
);
}
catch
(
Exception
ex
)
{
}
}
});
break
;
break
;
case
R
.
id
.
action_help
:
{
case
R
.
id
.
action_help
:
{
final
DialogPlus
dialog
=
new
DialogPlus
(
getContext
());
final
DialogPlus
dialog
=
new
DialogPlus
(
getContext
());
...
@@ -733,7 +810,7 @@ public class HomeFragment extends BaseFragemnt implements OnDuelAssistantListene
...
@@ -733,7 +810,7 @@ public class HomeFragment extends BaseFragemnt implements OnDuelAssistantListene
case
R
.
id
.
nav_webpage
:
{
case
R
.
id
.
nav_webpage
:
{
Intent
intent
=
new
Intent
(
Intent
.
ACTION_VIEW
);
Intent
intent
=
new
Intent
(
Intent
.
ACTION_VIEW
);
intent
.
setData
(
Uri
.
parse
(
Constants
.
URL_DONATE
));
intent
.
setData
(
Uri
.
parse
(
Constants
.
URL_DONATE
));
Toast
.
makeText
(
getActivity
(),
R
.
string
.
donatefor
,
Toast
.
LENGTH_LONG
).
show
();
Toast
.
makeText
(
getActivity
(),
R
.
string
.
donatefor
,
Toast
.
LENGTH_LONG
).
show
();
startActivity
(
intent
);
startActivity
(
intent
);
}
}
break
;
break
;
...
...
mobile/src/main/res/layout/activity_ex_card.xml
0 → 100644
View file @
6708ef77
<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout
xmlns:android=
"http://schemas.android.com/apk/res/android"
android:layout_width=
"match_parent"
android:layout_height=
"match_parent"
>
<LinearLayout
android:layout_width=
"match_parent"
android:layout_height=
"match_parent"
android:orientation=
"vertical"
>
<com.tubb.smrv.SwipeMenuRecyclerView
android:id=
"@+id/list_ex_cards"
android:layout_width=
"match_parent"
android:layout_height=
"match_parent"
android:divider=
"@android:color/transparent"
android:dividerHeight=
"4dp"
android:padding=
"5dp"
android:scrollbars=
"vertical"
/>
</LinearLayout>
<LinearLayout
android:id=
"@+id/web_btn_bar"
android:layout_width=
"match_parent"
android:layout_height=
"wrap_content"
android:layout_gravity=
"bottom"
android:orientation=
"horizontal"
>
<Button
android:id=
"@+id/web_btn_download_prerelease"
android:layout_width=
"match_parent"
android:layout_height=
"wrap_content"
android:background=
"@drawable/button_bg"
android:text=
"@string/Download"
/>
</LinearLayout>
</androidx.coordinatorlayout.widget.CoordinatorLayout>
\ No newline at end of file
mobile/src/main/res/layout/item_ex_card.xml
0 → 100644
View file @
6708ef77
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android=
"http://schemas.android.com/apk/res/android"
xmlns:sml=
"http://schemas.android.com/apk/res-auto"
xmlns:tools=
"http://schemas.android.com/tools"
android:layout_width=
"match_parent"
android:layout_height=
"wrap_content"
android:orientation=
"horizontal"
>
<!-- set the layout_height in the linear layout to “wrap_content”
so it doesn’t only show one TextView per page.-->
<!-- <LinearLayout
android:layout_width="@dimen/card_width_middle"
android:layout_height="@dimen/card_height_middle">
</LinearLayout>-->
<ImageView
android:id=
"@+id/ex_card_image"
android:layout_width=
"@dimen/card_width_middle"
android:layout_height=
"@dimen/card_height_middle"
android:layout_centerInParent=
"true"
android:layout_gravity=
"center_vertical"
android:scaleType=
"fitXY"
android:paddingRight=
"10dp"
tools:src=
"@drawable/unknown"
/>
<LinearLayout
android:layout_width=
"match_parent"
android:layout_height=
"wrap_content"
android:orientation=
"vertical"
>
<cn.garymb.ygomobile.ui.widget.AlwaysMarqueeTextView
android:id=
"@+id/ex_card_name"
android:layout_width=
"match_parent"
android:layout_height=
"wrap_content"
android:maxLines=
"1"
android:shadowColor=
"@color/black"
android:shadowDx=
"1"
android:shadowDy=
"2"
android:shadowRadius=
"2"
android:singleLine=
"true"
android:textAppearance=
"@style/TextAppearance.AppCompat.Title"
android:textColor=
"@color/item_title"
android:textSize=
"18sp"
tools:text=
"Card Name"
/>
<TextView
android:id=
"@+id/ex_card_description"
android:layout_width=
"match_parent"
android:layout_height=
"wrap_content"
android:padding=
"20dp"
android:textSize=
"17sp"
/>
<View
android:id=
"@+id/view_bar"
android:layout_width=
"match_parent"
android:layout_height=
"1dp"
android:layout_marginTop=
"3dp"
android:background=
"@color/colorPrimaryDark"
/>
</LinearLayout>
</LinearLayout>
\ No newline at end of file
mobile/src/main/res/values-ko/strings.xml
View file @
6708ef77
...
@@ -38,6 +38,7 @@
...
@@ -38,6 +38,7 @@
<string
name=
"quit_tip"
>
앱을 종료하겠습니까?
</string>
<string
name=
"quit_tip"
>
앱을 종료하겠습니까?
</string>
<string
name=
"back_tip"
>
뒤로가기 키를 한번 더 누르시면 앱이 종료됩니다
</string>
<string
name=
"back_tip"
>
뒤로가기 키를 한번 더 누르시면 앱이 종료됩니다
</string>
<string
name=
"string_help_text"
>
현재 앱에 필요한 권한이 없습니다. \n설정 - 권한 - 필요한 권한 얻기를 터치하십시오.
</string>
<string
name=
"string_help_text"
>
현재 앱에 필요한 권한이 없습니다. \n설정 - 권한 - 필요한 권한 얻기를 터치하십시오.
</string>
<string
name=
"fetch_ex_card"
>
선행카드 읽기
</string>
<!-- settings -->
<!-- settings -->
<string
name=
"settings_about"
>
정보
</string>
<string
name=
"settings_about"
>
정보
</string>
<string
name=
"settings_about_sub_about"
>
정보
</string>
<string
name=
"settings_about_sub_about"
>
정보
</string>
...
...
mobile/src/main/res/values-zh/strings.xml
View file @
6708ef77
...
@@ -38,6 +38,7 @@
...
@@ -38,6 +38,7 @@
<string
name=
"quit_tip"
>
退出游戏?
</string>
<string
name=
"quit_tip"
>
退出游戏?
</string>
<string
name=
"back_tip"
>
请再按一次返回键退出
</string>
<string
name=
"back_tip"
>
请再按一次返回键退出
</string>
<string
name=
"string_help_text"
>
当前应用缺少必要权限。\n请点击 设置-权限 打开所需权限。
</string>
<string
name=
"string_help_text"
>
当前应用缺少必要权限。\n请点击 设置-权限 打开所需权限。
</string>
<string
name=
"fetch_ex_card"
>
读取先行卡
</string>
<!-- settings -->
<!-- settings -->
<string
name=
"settings_about"
>
关于
</string>
<string
name=
"settings_about"
>
关于
</string>
<string
name=
"settings_about_sub_about"
>
关于
</string>
<string
name=
"settings_about_sub_about"
>
关于
</string>
...
...
mobile/src/main/res/values/strings.xml
View file @
6708ef77
...
@@ -45,6 +45,7 @@
...
@@ -45,6 +45,7 @@
<string
name=
"back_tip"
>
Press back key again to exit.
</string>
<string
name=
"back_tip"
>
Press back key again to exit.
</string>
<string
name=
"string_help_text"
>
The current application lacks the necessary permissions. \n
<string
name=
"string_help_text"
>
The current application lacks the necessary permissions. \n
please click Settings - permissions - open the required permissions.
</string>
please click Settings - permissions - open the required permissions.
</string>
<string
name=
"fetch_ex_card"
>
Fetching ex-cards
</string>
<!-- settings -->
<!-- settings -->
<string
name=
"settings_about"
>
About
</string>
<string
name=
"settings_about"
>
About
</string>
<string
name=
"settings_about_sub_about"
>
About
</string>
<string
name=
"settings_about_sub_about"
>
About
</string>
...
...
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