mirror of
https://github.com/MaintainTeam/Hypatia.git
synced 2025-03-01 05:48:23 +03:00
Minor fixes
This commit is contained in:
parent
6d1a0d95ab
commit
27146b19c5
5 changed files with 8 additions and 10 deletions
2
.idea/misc.xml
generated
2
.idea/misc.xml
generated
|
@ -24,7 +24,7 @@
|
|||
</value>
|
||||
</option>
|
||||
</component>
|
||||
<component name="ProjectRootManager" version="2" languageLevel="JDK_1_7" default="true" project-jdk-name="JDK" project-jdk-type="JavaSDK">
|
||||
<component name="ProjectRootManager" version="2" languageLevel="JDK_1_8" default="true" project-jdk-name="JDK" project-jdk-type="JavaSDK">
|
||||
<output url="file://$PROJECT_DIR$/build/classes" />
|
||||
</component>
|
||||
<component name="ProjectType">
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
Theia
|
||||
=====
|
||||
Hypatia
|
||||
=======
|
||||
|
||||
Overview
|
||||
--------
|
||||
Theia is the worlds first FOSS malware scanner for Android. It is powered by ClamAV signature databases (GPLv3).
|
||||
Hypatia is the worlds first FOSS malware scanner for Android. It is powered by ClamAV signature databases (GPLv3).
|
||||
|
||||
Features
|
||||
--------
|
||||
|
@ -30,7 +30,7 @@ Technical Details
|
|||
Planned Updates
|
||||
----------------
|
||||
- Option to scan on access
|
||||
- Option to delete on detection
|
||||
- Option to quarantine/delete on detection
|
||||
- Scan files via share intent
|
||||
- Scan newly installed/updated apps
|
||||
- Better GUI
|
||||
|
|
|
@ -6,7 +6,7 @@ android {
|
|||
applicationId "us.spotco.malwarescanner"
|
||||
minSdkVersion 16
|
||||
targetSdkVersion 26
|
||||
versionCode 35
|
||||
versionCode 36
|
||||
versionName "2.7"
|
||||
resConfigs "en"
|
||||
}
|
||||
|
|
|
@ -93,8 +93,6 @@ public class MainActivity extends AppCompatActivity {
|
|||
}
|
||||
});
|
||||
|
||||
OrbotHelper.get(this).init();
|
||||
|
||||
requestPermissions();
|
||||
|
||||
Utils.considerStartService(this);
|
||||
|
|
|
@ -106,7 +106,7 @@ public class MalwareScannerService extends Service {
|
|||
}
|
||||
malwareMonitors.clear();
|
||||
System.gc();
|
||||
//Toast.makeText(this, "Theia: Realtime Scanning Stopped", Toast.LENGTH_SHORT).show();
|
||||
//Toast.makeText(this, "Hypatia: Realtime Scanning Stopped", Toast.LENGTH_SHORT).show();
|
||||
}
|
||||
|
||||
private void setForeground() {
|
||||
|
@ -130,4 +130,4 @@ public class MalwareScannerService extends Service {
|
|||
notificationManager.notify(-1, foregroundNotification.build());
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue