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
29096eb5
Commit
29096eb5
authored
May 31, 2017
by
topjohnwu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Monitor package (un)install events
parent
a573baea
Show whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
107 additions
and
34 deletions
+107
-34
AndroidManifest.xml
app/src/main/AndroidManifest.xml
+12
-4
MagiskManager.java
app/src/main/java/com/topjohnwu/magisk/MagiskManager.java
+10
-3
PolicyAdapter.java
...ain/java/com/topjohnwu/magisk/adapters/PolicyAdapter.java
+5
-5
SuDatabaseHelper.java
.../java/com/topjohnwu/magisk/database/SuDatabaseHelper.java
+25
-10
PackageReceiver.java
.../java/com/topjohnwu/magisk/receivers/PackageReceiver.java
+42
-0
RequestActivity.java
.../java/com/topjohnwu/magisk/superuser/RequestActivity.java
+1
-1
SuReceiver.java
.../main/java/com/topjohnwu/magisk/superuser/SuReceiver.java
+1
-1
SuRequestActivity.java
...ava/com/topjohnwu/magisk/superuser/SuRequestActivity.java
+0
-3
strings.xml
app/src/main/res/values/strings.xml
+2
-0
app_settings.xml
app/src/main/res/xml/app_settings.xml
+9
-7
No files found.
app/src/main/AndroidManifest.xml
View file @
29096eb5
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<manifest
package=
"com.topjohnwu.magisk"
<manifest
package=
"com.topjohnwu.magisk"
xmlns:android=
"http://schemas.android.com/apk/res/android"
xmlns:android=
"http://schemas.android.com/apk/res/android"
xmlns:tools=
"http://schemas.android.com/tools"
>
xmlns:tools=
"http://schemas.android.com/tools"
>
<uses-permission
android:name=
"android.permission.WRITE_EXTERNAL_STORAGE"
/>
<uses-permission
android:name=
"android.permission.WRITE_EXTERNAL_STORAGE"
/>
...
@@ -61,6 +61,14 @@
...
@@ -61,6 +61,14 @@
</intent-filter>
</intent-filter>
</receiver>
</receiver>
<receiver
android:name=
".receivers.PackageReceiver"
>
<intent-filter>
<action
android:name=
"android.intent.action.PACKAGE_ADDED"
/>
<action
android:name=
"android.intent.action.PACKAGE_REMOVED"
/>
<data
android:scheme=
"package"
/>
</intent-filter>
</receiver>
<service
android:name=
".services.BootupIntentService"
/>
<service
android:name=
".services.BootupIntentService"
/>
<service
<service
...
...
app/src/main/java/com/topjohnwu/magisk/MagiskManager.java
View file @
29096eb5
...
@@ -72,6 +72,7 @@ public class MagiskManager extends Application {
...
@@ -72,6 +72,7 @@ public class MagiskManager extends Application {
public
boolean
magiskHide
;
public
boolean
magiskHide
;
public
boolean
isDarkTheme
;
public
boolean
isDarkTheme
;
public
boolean
updateNotification
;
public
boolean
updateNotification
;
public
boolean
suReauth
;
public
int
suRequestTimeout
;
public
int
suRequestTimeout
;
public
int
suLogTimeout
=
14
;
public
int
suLogTimeout
=
14
;
public
int
suAccessState
;
public
int
suAccessState
;
...
@@ -129,6 +130,7 @@ public class MagiskManager extends Application {
...
@@ -129,6 +130,7 @@ public class MagiskManager extends Application {
.
putBoolean
(
"notification"
,
updateNotification
)
.
putBoolean
(
"notification"
,
updateNotification
)
.
putBoolean
(
"hosts"
,
new
File
(
"/magisk/.core/hosts"
).
exists
())
.
putBoolean
(
"hosts"
,
new
File
(
"/magisk/.core/hosts"
).
exists
())
.
putBoolean
(
"disable"
,
Utils
.
itemExist
(
MAGISK_DISABLE_FILE
))
.
putBoolean
(
"disable"
,
Utils
.
itemExist
(
MAGISK_DISABLE_FILE
))
.
putBoolean
(
"su_reauth"
,
suReauth
)
.
putString
(
"su_request_timeout"
,
String
.
valueOf
(
suRequestTimeout
))
.
putString
(
"su_request_timeout"
,
String
.
valueOf
(
suRequestTimeout
))
.
putString
(
"su_auto_response"
,
String
.
valueOf
(
suResponseType
))
.
putString
(
"su_auto_response"
,
String
.
valueOf
(
suResponseType
))
.
putString
(
"su_notification"
,
String
.
valueOf
(
suNotificationType
))
.
putString
(
"su_notification"
,
String
.
valueOf
(
suNotificationType
))
...
@@ -140,13 +142,18 @@ public class MagiskManager extends Application {
...
@@ -140,13 +142,18 @@ public class MagiskManager extends Application {
Shell
.
su
(
"PATH=$PATH:"
+
busybox
.
getParent
());
Shell
.
su
(
"PATH=$PATH:"
+
busybox
.
getParent
());
}
}
public
void
initSUConfig
()
{
suRequestTimeout
=
Utils
.
getPrefsInt
(
prefs
,
"su_request_timeout"
,
10
);
suResponseType
=
Utils
.
getPrefsInt
(
prefs
,
"su_auto_response"
,
0
);
suNotificationType
=
Utils
.
getPrefsInt
(
prefs
,
"su_notification"
,
1
);
suReauth
=
prefs
.
getBoolean
(
"su_reauth"
,
false
);
}
public
void
initSU
()
{
public
void
initSU
()
{
// Create the app data directory, so su binary can work properly
// Create the app data directory, so su binary can work properly
new
File
(
getApplicationInfo
().
dataDir
).
mkdirs
();
new
File
(
getApplicationInfo
().
dataDir
).
mkdirs
();
suRequestTimeout
=
Utils
.
getPrefsInt
(
prefs
,
"su_request_timeout"
,
10
);
initSUConfig
();
suResponseType
=
Utils
.
getPrefsInt
(
prefs
,
"su_auto_response"
,
0
);
suNotificationType
=
Utils
.
getPrefsInt
(
prefs
,
"su_notification"
,
1
);
List
<
String
>
ret
=
Shell
.
sh
(
"su -v"
);
List
<
String
>
ret
=
Shell
.
sh
(
"su -v"
);
if
(
Utils
.
isValidShellResponse
(
ret
))
{
if
(
Utils
.
isValidShellResponse
(
ret
))
{
...
...
app/src/main/java/com/topjohnwu/magisk/adapters/PolicyAdapter.java
View file @
29096eb5
...
@@ -72,7 +72,7 @@ public class PolicyAdapter extends RecyclerView.Adapter<PolicyAdapter.ViewHolder
...
@@ -72,7 +72,7 @@ public class PolicyAdapter extends RecyclerView.Adapter<PolicyAdapter.ViewHolder
String
message
=
v
.
getContext
().
getString
(
String
message
=
v
.
getContext
().
getString
(
isChecked
?
R
.
string
.
su_snack_grant
:
R
.
string
.
su_snack_deny
,
policy
.
appName
);
isChecked
?
R
.
string
.
su_snack_grant
:
R
.
string
.
su_snack_deny
,
policy
.
appName
);
SnackbarMaker
.
make
(
holder
.
itemView
,
message
,
Snackbar
.
LENGTH_SHORT
).
show
();
SnackbarMaker
.
make
(
holder
.
itemView
,
message
,
Snackbar
.
LENGTH_SHORT
).
show
();
dbHelper
.
add
Policy
(
policy
);
dbHelper
.
update
Policy
(
policy
);
}
}
});
});
holder
.
notificationSwitch
.
setOnCheckedChangeListener
((
v
,
isChecked
)
->
{
holder
.
notificationSwitch
.
setOnCheckedChangeListener
((
v
,
isChecked
)
->
{
...
@@ -82,7 +82,7 @@ public class PolicyAdapter extends RecyclerView.Adapter<PolicyAdapter.ViewHolder
...
@@ -82,7 +82,7 @@ public class PolicyAdapter extends RecyclerView.Adapter<PolicyAdapter.ViewHolder
String
message
=
v
.
getContext
().
getString
(
String
message
=
v
.
getContext
().
getString
(
isChecked
?
R
.
string
.
su_snack_notif_on
:
R
.
string
.
su_snack_notif_off
,
policy
.
appName
);
isChecked
?
R
.
string
.
su_snack_notif_on
:
R
.
string
.
su_snack_notif_off
,
policy
.
appName
);
SnackbarMaker
.
make
(
holder
.
itemView
,
message
,
Snackbar
.
LENGTH_SHORT
).
show
();
SnackbarMaker
.
make
(
holder
.
itemView
,
message
,
Snackbar
.
LENGTH_SHORT
).
show
();
dbHelper
.
add
Policy
(
policy
);
dbHelper
.
update
Policy
(
policy
);
}
}
});
});
holder
.
loggingSwitch
.
setOnCheckedChangeListener
((
v
,
isChecked
)
->
{
holder
.
loggingSwitch
.
setOnCheckedChangeListener
((
v
,
isChecked
)
->
{
...
@@ -92,7 +92,7 @@ public class PolicyAdapter extends RecyclerView.Adapter<PolicyAdapter.ViewHolder
...
@@ -92,7 +92,7 @@ public class PolicyAdapter extends RecyclerView.Adapter<PolicyAdapter.ViewHolder
String
message
=
v
.
getContext
().
getString
(
String
message
=
v
.
getContext
().
getString
(
isChecked
?
R
.
string
.
su_snack_log_on
:
R
.
string
.
su_snack_log_off
,
policy
.
appName
);
isChecked
?
R
.
string
.
su_snack_log_on
:
R
.
string
.
su_snack_log_off
,
policy
.
appName
);
SnackbarMaker
.
make
(
holder
.
itemView
,
message
,
Snackbar
.
LENGTH_SHORT
).
show
();
SnackbarMaker
.
make
(
holder
.
itemView
,
message
,
Snackbar
.
LENGTH_SHORT
).
show
();
dbHelper
.
add
Policy
(
policy
);
dbHelper
.
update
Policy
(
policy
);
}
}
});
});
holder
.
delete
.
setOnClickListener
(
v
->
new
AlertDialogBuilder
(
v
.
getContext
())
holder
.
delete
.
setOnClickListener
(
v
->
new
AlertDialogBuilder
(
v
.
getContext
())
...
@@ -104,7 +104,7 @@ public class PolicyAdapter extends RecyclerView.Adapter<PolicyAdapter.ViewHolder
...
@@ -104,7 +104,7 @@ public class PolicyAdapter extends RecyclerView.Adapter<PolicyAdapter.ViewHolder
notifyItemRangeChanged
(
position
,
policyList
.
size
());
notifyItemRangeChanged
(
position
,
policyList
.
size
());
SnackbarMaker
.
make
(
holder
.
itemView
,
v
.
getContext
().
getString
(
R
.
string
.
su_snack_revoke
,
policy
.
appName
),
SnackbarMaker
.
make
(
holder
.
itemView
,
v
.
getContext
().
getString
(
R
.
string
.
su_snack_revoke
,
policy
.
appName
),
Snackbar
.
LENGTH_SHORT
).
show
();
Snackbar
.
LENGTH_SHORT
).
show
();
dbHelper
.
deletePolicy
(
policy
.
uid
);
dbHelper
.
deletePolicy
(
policy
);
})
})
.
setNegativeButton
(
R
.
string
.
no_thanks
,
null
)
.
setNegativeButton
(
R
.
string
.
no_thanks
,
null
)
.
setCancelable
(
true
)
.
setCancelable
(
true
)
...
@@ -118,7 +118,7 @@ public class PolicyAdapter extends RecyclerView.Adapter<PolicyAdapter.ViewHolder
...
@@ -118,7 +118,7 @@ public class PolicyAdapter extends RecyclerView.Adapter<PolicyAdapter.ViewHolder
}
catch
(
PackageManager
.
NameNotFoundException
e
)
{
}
catch
(
PackageManager
.
NameNotFoundException
e
)
{
policyList
.
remove
(
position
);
policyList
.
remove
(
position
);
dbHelper
.
deletePolicy
(
policy
.
uid
);
dbHelper
.
deletePolicy
(
policy
);
onBindViewHolder
(
holder
,
position
);
onBindViewHolder
(
holder
,
position
);
}
}
}
}
...
...
app/src/main/java/com/topjohnwu/magisk/database/SuDatabaseHelper.java
View file @
29096eb5
...
@@ -37,11 +37,11 @@ public class SuDatabaseHelper extends SQLiteOpenHelper {
...
@@ -37,11 +37,11 @@ public class SuDatabaseHelper extends SQLiteOpenHelper {
// Currently new database, no upgrading
// Currently new database, no upgrading
}
}
public
boolean
deletePolicy
(
int
uid
)
{
public
boolean
deletePolicy
(
Policy
policy
)
{
SQLiteDatabase
db
=
getWritableDatabase
();
SQLiteDatabase
db
=
getWritableDatabase
();
db
.
delete
(
TABLE_NAME
,
"
uid=?"
,
new
String
[]
{
String
.
valueOf
(
uid
)
});
db
.
delete
(
TABLE_NAME
,
"
package_name=?"
,
new
String
[]
{
policy
.
packageName
});
db
.
close
();
db
.
close
();
return
getPolicy
(
uid
)
==
null
;
return
getPolicy
(
policy
.
packageName
)
==
null
;
}
}
public
Policy
getPolicy
(
int
uid
)
{
public
Policy
getPolicy
(
int
uid
)
{
...
@@ -56,29 +56,44 @@ public class SuDatabaseHelper extends SQLiteOpenHelper {
...
@@ -56,29 +56,44 @@ public class SuDatabaseHelper extends SQLiteOpenHelper {
return
policy
;
return
policy
;
}
}
public
Policy
getPolicy
(
String
pkg
)
{
Policy
policy
=
null
;
SQLiteDatabase
db
=
getReadableDatabase
();
try
(
Cursor
c
=
db
.
query
(
TABLE_NAME
,
null
,
"package_name=?"
,
new
String
[]
{
pkg
},
null
,
null
,
null
))
{
if
(
c
.
moveToNext
())
{
policy
=
new
Policy
(
c
);
}
}
db
.
close
();
return
policy
;
}
public
void
addPolicy
(
Policy
policy
)
{
public
void
addPolicy
(
Policy
policy
)
{
SQLiteDatabase
db
=
getWritableDatabase
();
SQLiteDatabase
db
=
getWritableDatabase
();
db
.
replace
(
TABLE_NAME
,
null
,
policy
.
getContentValues
());
db
.
replace
(
TABLE_NAME
,
null
,
policy
.
getContentValues
());
db
.
close
();
db
.
close
();
}
}
public
void
updatePolicy
(
Policy
policy
)
{
SQLiteDatabase
db
=
getWritableDatabase
();
db
.
update
(
TABLE_NAME
,
policy
.
getContentValues
(),
"package_name=?"
,
new
String
[]
{
policy
.
packageName
});
db
.
close
();
}
public
List
<
Policy
>
getPolicyList
(
PackageManager
pm
)
{
public
List
<
Policy
>
getPolicyList
(
PackageManager
pm
)
{
List
<
Policy
>
ret
=
new
ArrayList
<>();
List
<
Policy
>
ret
=
new
ArrayList
<>();
SQLiteDatabase
db
=
getWritableDatabase
();
SQLiteDatabase
db
=
getWritableDatabase
();
Policy
policy
;
Policy
policy
;
// Clear outdated policies
// Clear outdated policies
db
.
delete
(
TABLE_NAME
,
"until > 0 and until < ?"
,
new
String
[]
{
String
.
valueOf
(
System
.
currentTimeMillis
())
});
db
.
delete
(
TABLE_NAME
,
"until > 0 AND until < ?"
,
new
String
[]
{
String
.
valueOf
(
System
.
currentTimeMillis
())
});
try
(
Cursor
c
=
db
.
query
(
TABLE_NAME
,
null
,
null
,
null
,
null
,
null
,
"app_name ASC"
))
{
try
(
Cursor
c
=
db
.
query
(
TABLE_NAME
,
null
,
null
,
null
,
null
,
null
,
"app_name ASC"
))
{
while
(
c
.
moveToNext
())
{
while
(
c
.
moveToNext
())
{
policy
=
new
Policy
(
c
);
policy
=
new
Policy
(
c
);
// Package is uninstalled
if
(
pm
.
getPackagesForUid
(
policy
.
uid
)
==
null
)
{
deletePolicy
(
policy
.
uid
);
}
else
{
ret
.
add
(
policy
);
ret
.
add
(
policy
);
}
}
}
}
}
db
.
close
();
db
.
close
();
return
ret
;
return
ret
;
}
}
...
...
app/src/main/java/com/topjohnwu/magisk/receivers/PackageReceiver.java
0 → 100644
View file @
29096eb5
package
com
.
topjohnwu
.
magisk
.
receivers
;
import
android.content.BroadcastReceiver
;
import
android.content.Context
;
import
android.content.Intent
;
import
com.topjohnwu.magisk.MagiskManager
;
import
com.topjohnwu.magisk.database.SuDatabaseHelper
;
import
com.topjohnwu.magisk.superuser.Policy
;
import
com.topjohnwu.magisk.utils.Logger
;
import
com.topjohnwu.magisk.utils.Utils
;
public
class
PackageReceiver
extends
BroadcastReceiver
{
@Override
public
void
onReceive
(
Context
context
,
Intent
intent
)
{
SuDatabaseHelper
suDB
=
new
SuDatabaseHelper
(
context
);
String
pkg
=
intent
.
getData
().
getEncodedSchemeSpecificPart
();
Policy
policy
=
suDB
.
getPolicy
(
pkg
);
if
(
policy
==
null
)
return
;
MagiskManager
magiskManager
=
Utils
.
getMagiskManager
(
context
);
magiskManager
.
initSUConfig
();
switch
(
intent
.
getAction
())
{
case
Intent
.
ACTION_PACKAGE_ADDED
:
int
uid
=
intent
.
getIntExtra
(
Intent
.
EXTRA_UID
,
-
1
);
// Update the UID if available
if
(
uid
>
0
)
{
policy
.
uid
=
uid
%
100000
;
}
suDB
.
updatePolicy
(
policy
);
return
;
case
Intent
.
ACTION_PACKAGE_REMOVED
:
boolean
isUpdate
=
intent
.
getBooleanExtra
(
Intent
.
EXTRA_REPLACING
,
false
);
if
(!
isUpdate
||
magiskManager
.
suReauth
)
{
suDB
.
deletePolicy
(
policy
);
}
break
;
}
}
}
app/src/main/java/com/topjohnwu/magisk/superuser/RequestActivity.java
View file @
29096eb5
...
@@ -17,7 +17,7 @@ public class RequestActivity extends Activity {
...
@@ -17,7 +17,7 @@ public class RequestActivity extends Activity {
return
;
return
;
}
}
getApplicationContext
().
initSU
();
getApplicationContext
().
initSU
Config
();
intent
.
addFlags
(
Intent
.
FLAG_ACTIVITY_NEW_TASK
).
setClass
(
this
,
SuRequestActivity
.
class
);
intent
.
addFlags
(
Intent
.
FLAG_ACTIVITY_NEW_TASK
).
setClass
(
this
,
SuRequestActivity
.
class
);
startActivity
(
intent
);
startActivity
(
intent
);
finish
();
finish
();
...
...
app/src/main/java/com/topjohnwu/magisk/superuser/SuReceiver.java
View file @
29096eb5
...
@@ -56,7 +56,7 @@ public class SuReceiver extends BroadcastReceiver {
...
@@ -56,7 +56,7 @@ public class SuReceiver extends BroadcastReceiver {
}
}
}
}
magiskManager
.
initSU
();
magiskManager
.
initSU
Config
();
SuLogEntry
log
=
new
SuLogEntry
(
policy
);
SuLogEntry
log
=
new
SuLogEntry
(
policy
);
...
...
app/src/main/java/com/topjohnwu/magisk/superuser/SuRequestActivity.java
View file @
29096eb5
...
@@ -89,9 +89,6 @@ public class SuRequestActivity extends Activity {
...
@@ -89,9 +89,6 @@ public class SuRequestActivity extends Activity {
}
}
private
void
showRequest
()
{
private
void
showRequest
()
{
Logger
.
debug
(
"Show request"
);
switch
(
magiskManager
.
suResponseType
)
{
switch
(
magiskManager
.
suResponseType
)
{
case
AUTO_DENY:
case
AUTO_DENY:
handleAction
(
Policy
.
DENY
,
0
);
handleAction
(
Policy
.
DENY
,
0
);
...
...
app/src/main/res/values/strings.xml
View file @
29096eb5
...
@@ -161,6 +161,8 @@
...
@@ -161,6 +161,8 @@
<string
name=
"request_timeout"
>
Request Timeout
</string>
<string
name=
"request_timeout"
>
Request Timeout
</string>
<string
name=
"superuser_notification"
>
Superuser Notification
</string>
<string
name=
"superuser_notification"
>
Superuser Notification
</string>
<string
name=
"request_timeout_summary"
>
%1$s seconds
</string>
<string
name=
"request_timeout_summary"
>
%1$s seconds
</string>
<string
name=
"settings_su_reauth_title"
>
Re-authenticate after upgrade
</string>
<string
name=
"settings_su_reauth_summary"
>
Re-authenticate superuser permissions after an application upgrades
</string>
<string
name=
"multiuser_mode"
>
Multiuser Mode
</string>
<string
name=
"multiuser_mode"
>
Multiuser Mode
</string>
<string
name=
"settings_owner_only"
>
Device Owner Only
</string>
<string
name=
"settings_owner_only"
>
Device Owner Only
</string>
...
...
app/src/main/res/xml/app_settings.xml
View file @
29096eb5
...
@@ -5,15 +5,14 @@
...
@@ -5,15 +5,14 @@
android:title=
"@string/settings_general_category"
>
android:title=
"@string/settings_general_category"
>
<SwitchPreference
<SwitchPreference
android:
defaultValue=
"fals
e"
android:
key=
"dark_them
e"
android:title=
"@string/settings_dark_theme_title"
android:title=
"@string/settings_dark_theme_title"
android:summary=
"@string/settings_dark_theme_summary"
android:summary=
"@string/settings_dark_theme_summary"
/>
android:key=
"dark_theme"
/>
<SwitchPreference
<SwitchPreference
android:key=
"notification"
android:title=
"@string/settings_notification_title"
android:title=
"@string/settings_notification_title"
android:summary=
"@string/settings_notification_summary"
android:summary=
"@string/settings_notification_summary"
/>
android:key=
"notification"
/>
<Preference
<Preference
android:key=
"clear"
android:key=
"clear"
...
@@ -33,13 +32,11 @@
...
@@ -33,13 +32,11 @@
<SwitchPreference
<SwitchPreference
android:key=
"magiskhide"
android:key=
"magiskhide"
android:defaultValue=
"false"
android:title=
"@string/magiskhide"
android:title=
"@string/magiskhide"
android:summary=
"@string/settings_magiskhide_summary"
/>
android:summary=
"@string/settings_magiskhide_summary"
/>
<SwitchPreference
<SwitchPreference
android:key=
"hosts"
android:key=
"hosts"
android:defaultValue=
"false"
android:title=
"@string/settings_hosts_title"
android:title=
"@string/settings_hosts_title"
android:summary=
"@string/settings_hosts_summary"
/>
android:summary=
"@string/settings_hosts_summary"
/>
...
@@ -79,6 +76,11 @@
...
@@ -79,6 +76,11 @@
android:entries=
"@array/su_notification"
android:entries=
"@array/su_notification"
android:entryValues=
"@array/value_array"
/>
android:entryValues=
"@array/value_array"
/>
<SwitchPreference
android:key=
"su_reauth"
android:title=
"@string/settings_su_reauth_title"
android:summary=
"@string/settings_su_reauth_summary"
/>
</PreferenceCategory>
</PreferenceCategory>
<PreferenceCategory
<PreferenceCategory
...
...
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