Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
M
Magisk
Project
Project
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
Magisk
Commits
47c86014
Commit
47c86014
authored
Sep 16, 2018
by
topjohnwu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use ClassMaps to prevent errors
parent
2fba3f21
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
63 additions
and
26 deletions
+63
-26
Data.java
app/src/full/java/com/topjohnwu/magisk/Data.java
+30
-0
MainActivity.java
app/src/full/java/com/topjohnwu/magisk/MainActivity.java
+3
-3
SplashActivity.java
app/src/full/java/com/topjohnwu/magisk/SplashActivity.java
+3
-4
ProcessRepoZip.java
...full/java/com/topjohnwu/magisk/asyncs/ProcessRepoZip.java
+2
-1
InstallMethodDialog.java
.../com/topjohnwu/magisk/components/InstallMethodDialog.java
+4
-3
ManagerInstallDialog.java
...com/topjohnwu/magisk/components/ManagerInstallDialog.java
+2
-2
UninstallDialog.java
...java/com/topjohnwu/magisk/components/UninstallDialog.java
+2
-1
ModulesFragment.java
.../java/com/topjohnwu/magisk/fragments/ModulesFragment.java
+3
-1
ShortcutReceiver.java
...java/com/topjohnwu/magisk/receivers/ShortcutReceiver.java
+5
-4
OnBootService.java
...ull/java/com/topjohnwu/magisk/services/OnBootService.java
+2
-1
NotificationMgr.java
...full/java/com/topjohnwu/magisk/utils/NotificationMgr.java
+7
-6
No files found.
app/src/full/java/com/topjohnwu/magisk/Data.java
View file @
47c86014
...
...
@@ -5,6 +5,14 @@ import android.os.Handler;
import
android.os.Looper
;
import
android.util.Xml
;
import
com.topjohnwu.magisk.components.AboutCardRow
;
import
com.topjohnwu.magisk.receivers.BootReceiver
;
import
com.topjohnwu.magisk.receivers.ManagerUpdate
;
import
com.topjohnwu.magisk.receivers.PackageReceiver
;
import
com.topjohnwu.magisk.receivers.RebootReceiver
;
import
com.topjohnwu.magisk.receivers.ShortcutReceiver
;
import
com.topjohnwu.magisk.services.OnBootService
;
import
com.topjohnwu.magisk.services.UpdateCheckService
;
import
com.topjohnwu.magisk.utils.FingerprintHelper
;
import
com.topjohnwu.magisk.utils.Utils
;
import
com.topjohnwu.superuser.Shell
;
...
...
@@ -18,11 +26,14 @@ import org.xmlpull.v1.XmlPullParserException;
import
java.io.File
;
import
java.io.IOException
;
import
java.lang.ref.WeakReference
;
import
java.util.HashMap
;
import
java.util.Map
;
public
class
Data
{
// Global app instance
public
static
WeakReference
<
MagiskManager
>
weakApp
;
public
static
Handler
mainHandler
=
new
Handler
(
Looper
.
getMainLooper
());
public
static
Map
<
Class
,
Class
>
classMap
=
new
HashMap
<>();
// Current status
public
static
String
magiskVersionString
;
...
...
@@ -60,6 +71,25 @@ public class Data {
public
static
int
updateChannel
;
public
static
int
repoOrder
;
static
{
classMap
.
put
(
MagiskManager
.
class
,
a
.
a
.
class
);
classMap
.
put
(
MainActivity
.
class
,
a
.
b
.
class
);
classMap
.
put
(
SplashActivity
.
class
,
a
.
c
.
class
);
classMap
.
put
(
AboutActivity
.
class
,
a
.
d
.
class
);
classMap
.
put
(
DonationActivity
.
class
,
a
.
e
.
class
);
classMap
.
put
(
FlashActivity
.
class
,
a
.
f
.
class
);
classMap
.
put
(
NoUIActivity
.
class
,
a
.
g
.
class
);
classMap
.
put
(
BootReceiver
.
class
,
a
.
h
.
class
);
classMap
.
put
(
PackageReceiver
.
class
,
a
.
i
.
class
);
classMap
.
put
(
ManagerUpdate
.
class
,
a
.
j
.
class
);
classMap
.
put
(
RebootReceiver
.
class
,
a
.
k
.
class
);
classMap
.
put
(
ShortcutReceiver
.
class
,
a
.
l
.
class
);
classMap
.
put
(
OnBootService
.
class
,
a
.
m
.
class
);
classMap
.
put
(
UpdateCheckService
.
class
,
a
.
n
.
class
);
classMap
.
put
(
AboutCardRow
.
class
,
a
.
o
.
class
);
}
public
static
void
loadMagiskInfo
()
{
try
{
magiskVersionString
=
ShellUtils
.
fastCmd
(
"magisk -v"
).
split
(
":"
)[
0
];
...
...
app/src/full/java/com/topjohnwu/magisk/MainActivity.java
View file @
47c86014
...
...
@@ -48,7 +48,7 @@ public class MainActivity extends BaseActivity
@Override
protected
void
onCreate
(
final
Bundle
savedInstanceState
)
{
if
(!
mm
.
hasInit
)
{
startActivity
(
new
Intent
(
this
,
a
.
c
.
class
));
startActivity
(
new
Intent
(
this
,
Data
.
classMap
.
get
(
SplashActivity
.
class
)
));
finish
();
}
...
...
@@ -194,11 +194,11 @@ public class MainActivity extends BaseActivity
displayFragment
(
new
SettingsFragment
(),
true
);
break
;
case
R
.
id
.
app_about
:
startActivity
(
new
Intent
(
this
,
a
.
d
.
class
));
startActivity
(
new
Intent
(
this
,
Data
.
classMap
.
get
(
AboutActivity
.
class
)
));
mDrawerItem
=
bak
;
break
;
case
R
.
id
.
donation
:
startActivity
(
new
Intent
(
this
,
a
.
e
.
class
));
startActivity
(
new
Intent
(
this
,
Data
.
classMap
.
get
(
DonationActivity
.
class
)
));
mDrawerItem
=
bak
;
break
;
}
...
...
app/src/full/java/com/topjohnwu/magisk/SplashActivity.java
View file @
47c86014
...
...
@@ -10,13 +10,12 @@ import com.topjohnwu.magisk.asyncs.CheckUpdates;
import
com.topjohnwu.magisk.asyncs.UpdateRepos
;
import
com.topjohnwu.magisk.components.BaseActivity
;
import
com.topjohnwu.magisk.database.RepoDatabaseHelper
;
import
com.topjohnwu.magisk.receivers.ShortcutReceiver
;
import
com.topjohnwu.magisk.utils.Download
;
import
com.topjohnwu.magisk.utils.LocaleManager
;
import
com.topjohnwu.magisk.utils.Utils
;
import
com.topjohnwu.superuser.Shell
;
import
a.l
;
public
class
SplashActivity
extends
BaseActivity
{
@Override
...
...
@@ -45,7 +44,7 @@ public class SplashActivity extends BaseActivity {
}
// Setup shortcuts
sendBroadcast
(
new
Intent
(
this
,
l
.
class
));
sendBroadcast
(
new
Intent
(
this
,
Data
.
classMap
.
get
(
ShortcutReceiver
.
class
)
));
if
(
Download
.
checkNetworkStatus
(
this
))
{
// Fire update check
...
...
@@ -59,7 +58,7 @@ public class SplashActivity extends BaseActivity {
mm
.
hasInit
=
true
;
Intent
intent
=
new
Intent
(
this
,
a
.
b
.
class
);
Intent
intent
=
new
Intent
(
this
,
Data
.
classMap
.
get
(
MainActivity
.
class
)
);
intent
.
putExtra
(
Const
.
Key
.
OPEN_SECTION
,
getIntent
().
getStringExtra
(
Const
.
Key
.
OPEN_SECTION
));
intent
.
putExtra
(
BaseActivity
.
INTENT_PERM
,
getIntent
().
getStringExtra
(
BaseActivity
.
INTENT_PERM
));
startActivity
(
intent
);
...
...
app/src/full/java/com/topjohnwu/magisk/asyncs/ProcessRepoZip.java
View file @
47c86014
...
...
@@ -8,6 +8,7 @@ import android.widget.Toast;
import
com.topjohnwu.magisk.Const
;
import
com.topjohnwu.magisk.Data
;
import
com.topjohnwu.magisk.FlashActivity
;
import
com.topjohnwu.magisk.R
;
import
com.topjohnwu.magisk.components.BaseActivity
;
import
com.topjohnwu.magisk.components.SnackbarMaker
;
...
...
@@ -140,7 +141,7 @@ public class ProcessRepoZip extends ParallelTask<Void, Object, Boolean> {
if
(
result
)
{
Uri
uri
=
Uri
.
fromFile
(
mFile
);
if
(
mInstall
)
{
Intent
intent
=
new
Intent
(
activity
,
a
.
f
.
class
);
Intent
intent
=
new
Intent
(
activity
,
Data
.
classMap
.
get
(
FlashActivity
.
class
)
);
intent
.
setData
(
uri
).
putExtra
(
Const
.
Key
.
FLASH_ACTION
,
Const
.
Value
.
FLASH_ZIP
);
activity
.
startActivity
(
intent
);
}
else
{
...
...
app/src/full/java/com/topjohnwu/magisk/components/InstallMethodDialog.java
View file @
47c86014
...
...
@@ -8,6 +8,7 @@ import android.widget.Toast;
import
com.google.android.material.snackbar.Snackbar
;
import
com.topjohnwu.magisk.Const
;
import
com.topjohnwu.magisk.Data
;
import
com.topjohnwu.magisk.FlashActivity
;
import
com.topjohnwu.magisk.R
;
import
com.topjohnwu.magisk.receivers.DownloadReceiver
;
import
com.topjohnwu.magisk.utils.Download
;
...
...
@@ -37,7 +38,7 @@ class InstallMethodDialog extends AlertDialog.Builder {
(
requestCode
,
resultCode
,
data
)
->
{
if
(
requestCode
==
Const
.
ID
.
SELECT_BOOT
&&
resultCode
==
BaseActivity
.
RESULT_OK
&&
data
!=
null
)
{
Intent
i
=
new
Intent
(
activity
,
a
.
f
.
class
)
Intent
i
=
new
Intent
(
activity
,
Data
.
classMap
.
get
(
FlashActivity
.
class
)
)
.
putExtra
(
Const
.
Key
.
FLASH_SET_BOOT
,
data
.
getData
())
.
putExtra
(
Const
.
Key
.
FLASH_ACTION
,
Const
.
Value
.
PATCH_BOOT
);
activity
.
startActivity
(
i
);
...
...
@@ -55,7 +56,7 @@ class InstallMethodDialog extends AlertDialog.Builder {
},
Data
.
magiskLink
,
filename
);
break
;
case
2
:
intent
=
new
Intent
(
activity
,
a
.
f
.
class
)
intent
=
new
Intent
(
activity
,
Data
.
classMap
.
get
(
FlashActivity
.
class
)
)
.
putExtra
(
Const
.
Key
.
FLASH_ACTION
,
Const
.
Value
.
FLASH_MAGISK
);
activity
.
startActivity
(
intent
);
break
;
...
...
@@ -65,7 +66,7 @@ class InstallMethodDialog extends AlertDialog.Builder {
.
setMessage
(
R
.
string
.
install_inactive_slot_msg
)
.
setCancelable
(
true
)
.
setPositiveButton
(
R
.
string
.
yes
,
(
d
,
i
)
->
{
Intent
it
=
new
Intent
(
activity
,
a
.
f
.
class
)
Intent
it
=
new
Intent
(
activity
,
Data
.
classMap
.
get
(
FlashActivity
.
class
)
)
.
putExtra
(
Const
.
Key
.
FLASH_ACTION
,
Const
.
Value
.
FLASH_INACTIVE_SLOT
);
activity
.
startActivity
(
it
);
})
...
...
app/src/full/java/com/topjohnwu/magisk/components/ManagerInstallDialog.java
View file @
47c86014
...
...
@@ -9,9 +9,9 @@ import com.topjohnwu.magisk.Data;
import
com.topjohnwu.magisk.MagiskManager
;
import
com.topjohnwu.magisk.R
;
import
com.topjohnwu.magisk.asyncs.MarkDownWindow
;
import
com.topjohnwu.magisk.receivers.ManagerUpdate
;
import
com.topjohnwu.magisk.utils.Utils
;
import
a.j
;
import
androidx.annotation.NonNull
;
public
class
ManagerInstallDialog
extends
CustomAlertDialog
{
...
...
@@ -26,7 +26,7 @@ public class ManagerInstallDialog extends CustomAlertDialog {
setCancelable
(
true
);
setPositiveButton
(
R
.
string
.
install
,
(
d
,
i
)
->
activity
.
runWithPermission
(
new
String
[]
{
Manifest
.
permission
.
WRITE_EXTERNAL_STORAGE
},
()
->
{
Intent
intent
=
new
Intent
(
mm
,
j
.
class
);
Intent
intent
=
new
Intent
(
mm
,
Data
.
classMap
.
get
(
ManagerUpdate
.
class
)
);
intent
.
putExtra
(
Const
.
Key
.
INTENT_SET_LINK
,
Data
.
managerLink
);
intent
.
putExtra
(
Const
.
Key
.
INTENT_SET_FILENAME
,
filename
);
mm
.
sendBroadcast
(
intent
);
...
...
app/src/full/java/com/topjohnwu/magisk/components/UninstallDialog.java
View file @
47c86014
...
...
@@ -10,6 +10,7 @@ import android.widget.Toast;
import
com.topjohnwu.magisk.Const
;
import
com.topjohnwu.magisk.Data
;
import
com.topjohnwu.magisk.FlashActivity
;
import
com.topjohnwu.magisk.MagiskManager
;
import
com.topjohnwu.magisk.R
;
import
com.topjohnwu.magisk.receivers.DownloadReceiver
;
...
...
@@ -44,7 +45,7 @@ public class UninstallDialog extends CustomAlertDialog {
Download
.
receive
(
activity
,
new
DownloadReceiver
()
{
@Override
public
void
onDownloadDone
(
Context
context
,
Uri
uri
)
{
Intent
intent
=
new
Intent
(
context
,
a
.
f
.
class
)
Intent
intent
=
new
Intent
(
context
,
Data
.
classMap
.
get
(
FlashActivity
.
class
)
)
.
addFlags
(
Intent
.
FLAG_ACTIVITY_NEW_TASK
)
.
setData
(
uri
)
.
putExtra
(
Const
.
Key
.
FLASH_ACTION
,
Const
.
Value
.
UNINSTALL
);
...
...
app/src/full/java/com/topjohnwu/magisk/fragments/ModulesFragment.java
View file @
47c86014
...
...
@@ -13,6 +13,8 @@ import android.view.ViewGroup;
import
android.widget.TextView
;
import
com.topjohnwu.magisk.Const
;
import
com.topjohnwu.magisk.Data
;
import
com.topjohnwu.magisk.FlashActivity
;
import
com.topjohnwu.magisk.R
;
import
com.topjohnwu.magisk.ViewBinder
;
import
com.topjohnwu.magisk.adapters.ModulesAdapter
;
...
...
@@ -90,7 +92,7 @@ public class ModulesFragment extends BaseFragment implements Topic.Subscriber {
public
void
onActivityResult
(
int
requestCode
,
int
resultCode
,
Intent
data
)
{
if
(
requestCode
==
Const
.
ID
.
FETCH_ZIP
&&
resultCode
==
Activity
.
RESULT_OK
&&
data
!=
null
)
{
// Get the URI of the selected file
Intent
intent
=
new
Intent
(
getActivity
(),
a
.
f
.
class
);
Intent
intent
=
new
Intent
(
getActivity
(),
Data
.
classMap
.
get
(
FlashActivity
.
class
)
);
intent
.
setData
(
data
.
getData
()).
putExtra
(
Const
.
Key
.
FLASH_ACTION
,
Const
.
Value
.
FLASH_ZIP
);
startActivity
(
intent
);
}
...
...
app/src/full/java/com/topjohnwu/magisk/receivers/ShortcutReceiver.java
View file @
47c86014
...
...
@@ -12,6 +12,7 @@ import com.topjohnwu.magisk.Const;
import
com.topjohnwu.magisk.Data
;
import
com.topjohnwu.magisk.MagiskManager
;
import
com.topjohnwu.magisk.R
;
import
com.topjohnwu.magisk.SplashActivity
;
import
com.topjohnwu.superuser.Shell
;
import
java.util.ArrayList
;
...
...
@@ -36,7 +37,7 @@ public class ShortcutReceiver extends BroadcastReceiver {
Data
.
multiuserMode
==
Const
.
Value
.
MULTIUSER_MODE_OWNER_MANAGED
))
{
shortCuts
.
add
(
new
ShortcutInfo
.
Builder
(
mm
,
"superuser"
)
.
setShortLabel
(
mm
.
getString
(
R
.
string
.
superuser
))
.
setIntent
(
new
Intent
(
mm
,
a
.
c
.
class
)
.
setIntent
(
new
Intent
(
mm
,
Data
.
classMap
.
get
(
SplashActivity
.
class
)
)
.
putExtra
(
Const
.
Key
.
OPEN_SECTION
,
"superuser"
)
.
setAction
(
Intent
.
ACTION_VIEW
)
.
addFlags
(
Intent
.
FLAG_ACTIVITY_CLEAR_TASK
))
...
...
@@ -48,7 +49,7 @@ public class ShortcutReceiver extends BroadcastReceiver {
&&
mm
.
prefs
.
getBoolean
(
Const
.
Key
.
MAGISKHIDE
,
false
))
{
shortCuts
.
add
(
new
ShortcutInfo
.
Builder
(
mm
,
"magiskhide"
)
.
setShortLabel
(
mm
.
getString
(
R
.
string
.
magiskhide
))
.
setIntent
(
new
Intent
(
mm
,
a
.
c
.
class
)
.
setIntent
(
new
Intent
(
mm
,
Data
.
classMap
.
get
(
SplashActivity
.
class
)
)
.
putExtra
(
Const
.
Key
.
OPEN_SECTION
,
"magiskhide"
)
.
setAction
(
Intent
.
ACTION_VIEW
)
.
addFlags
(
Intent
.
FLAG_ACTIVITY_CLEAR_TASK
))
...
...
@@ -59,7 +60,7 @@ public class ShortcutReceiver extends BroadcastReceiver {
if
(!
mm
.
prefs
.
getBoolean
(
Const
.
Key
.
COREONLY
,
false
)
&&
root
&&
Data
.
magiskVersionCode
>=
0
)
{
shortCuts
.
add
(
new
ShortcutInfo
.
Builder
(
mm
,
"modules"
)
.
setShortLabel
(
mm
.
getString
(
R
.
string
.
modules
))
.
setIntent
(
new
Intent
(
mm
,
a
.
c
.
class
)
.
setIntent
(
new
Intent
(
mm
,
Data
.
classMap
.
get
(
SplashActivity
.
class
)
)
.
putExtra
(
Const
.
Key
.
OPEN_SECTION
,
"modules"
)
.
setAction
(
Intent
.
ACTION_VIEW
)
.
addFlags
(
Intent
.
FLAG_ACTIVITY_CLEAR_TASK
))
...
...
@@ -68,7 +69,7 @@ public class ShortcutReceiver extends BroadcastReceiver {
.
build
());
shortCuts
.
add
(
new
ShortcutInfo
.
Builder
(
mm
,
"downloads"
)
.
setShortLabel
(
mm
.
getString
(
R
.
string
.
download
))
.
setIntent
(
new
Intent
(
mm
,
a
.
c
.
class
)
.
setIntent
(
new
Intent
(
mm
,
Data
.
classMap
.
get
(
SplashActivity
.
class
)
)
.
putExtra
(
Const
.
Key
.
OPEN_SECTION
,
"downloads"
)
.
setAction
(
Intent
.
ACTION_VIEW
)
.
addFlags
(
Intent
.
FLAG_ACTIVITY_CLEAR_TASK
))
...
...
app/src/full/java/com/topjohnwu/magisk/services/OnBootService.java
View file @
47c86014
...
...
@@ -4,6 +4,7 @@ import android.content.Context;
import
android.content.Intent
;
import
com.topjohnwu.magisk.Const
;
import
com.topjohnwu.magisk.Data
;
import
com.topjohnwu.magisk.utils.NotificationMgr
;
import
com.topjohnwu.superuser.Shell
;
import
com.topjohnwu.superuser.ShellUtils
;
...
...
@@ -14,7 +15,7 @@ import androidx.core.app.JobIntentService;
public
class
OnBootService
extends
JobIntentService
{
public
static
void
enqueueWork
(
Context
context
)
{
enqueueWork
(
context
,
OnBootService
.
class
,
Const
.
ID
.
ONBOOT_SERVICE_ID
,
new
Intent
());
enqueueWork
(
context
,
Data
.
classMap
.
get
(
OnBootService
.
class
)
,
Const
.
ID
.
ONBOOT_SERVICE_ID
,
new
Intent
());
}
@Override
...
...
app/src/full/java/com/topjohnwu/magisk/utils/NotificationMgr.java
View file @
47c86014
...
...
@@ -9,9 +9,10 @@ import com.topjohnwu.magisk.Const;
import
com.topjohnwu.magisk.Data
;
import
com.topjohnwu.magisk.MagiskManager
;
import
com.topjohnwu.magisk.R
;
import
com.topjohnwu.magisk.SplashActivity
;
import
com.topjohnwu.magisk.receivers.ManagerUpdate
;
import
com.topjohnwu.magisk.receivers.RebootReceiver
;
import
a.j
;
import
a.k
;
import
androidx.core.app.NotificationCompat
;
import
androidx.core.app.TaskStackBuilder
;
...
...
@@ -20,10 +21,10 @@ public class NotificationMgr {
public
static
void
magiskUpdate
()
{
MagiskManager
mm
=
Data
.
MM
();
Intent
intent
=
new
Intent
(
mm
,
a
.
c
.
class
);
Intent
intent
=
new
Intent
(
mm
,
Data
.
classMap
.
get
(
SplashActivity
.
class
)
);
intent
.
putExtra
(
Const
.
Key
.
OPEN_SECTION
,
"magisk"
);
TaskStackBuilder
stackBuilder
=
TaskStackBuilder
.
create
(
mm
);
stackBuilder
.
addParentStack
(
a
.
c
.
class
);
stackBuilder
.
addParentStack
(
Data
.
classMap
.
get
(
SplashActivity
.
class
)
);
stackBuilder
.
addNextIntent
(
intent
);
PendingIntent
pendingIntent
=
stackBuilder
.
getPendingIntent
(
Const
.
ID
.
MAGISK_UPDATE_NOTIFICATION_ID
,
PendingIntent
.
FLAG_UPDATE_CURRENT
);
...
...
@@ -46,7 +47,7 @@ public class NotificationMgr {
String
filename
=
Utils
.
fmt
(
"MagiskManager-v%s(%d).apk"
,
Data
.
remoteManagerVersionString
,
Data
.
remoteManagerVersionCode
);
Intent
intent
=
new
Intent
(
mm
,
j
.
class
);
Intent
intent
=
new
Intent
(
mm
,
Data
.
classMap
.
get
(
ManagerUpdate
.
class
)
);
intent
.
putExtra
(
Const
.
Key
.
INTENT_SET_LINK
,
Data
.
managerLink
);
intent
.
putExtra
(
Const
.
Key
.
INTENT_SET_FILENAME
,
filename
);
PendingIntent
pendingIntent
=
PendingIntent
.
getBroadcast
(
mm
,
...
...
@@ -68,7 +69,7 @@ public class NotificationMgr {
public
static
void
dtboPatched
()
{
MagiskManager
mm
=
Data
.
MM
();
Intent
intent
=
new
Intent
(
mm
,
k
.
class
);
Intent
intent
=
new
Intent
(
mm
,
Data
.
classMap
.
get
(
RebootReceiver
.
class
)
);
PendingIntent
pendingIntent
=
PendingIntent
.
getBroadcast
(
mm
,
Const
.
ID
.
DTBO_NOTIFICATION_ID
,
intent
,
PendingIntent
.
FLAG_UPDATE_CURRENT
);
...
...
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