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>
|
</value>
|
||||||
</option>
|
</option>
|
||||||
</component>
|
</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" />
|
<output url="file://$PROJECT_DIR$/build/classes" />
|
||||||
</component>
|
</component>
|
||||||
<component name="ProjectType">
|
<component name="ProjectType">
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
Theia
|
Hypatia
|
||||||
=====
|
=======
|
||||||
|
|
||||||
Overview
|
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
|
Features
|
||||||
--------
|
--------
|
||||||
|
@ -30,7 +30,7 @@ Technical Details
|
||||||
Planned Updates
|
Planned Updates
|
||||||
----------------
|
----------------
|
||||||
- Option to scan on access
|
- Option to scan on access
|
||||||
- Option to delete on detection
|
- Option to quarantine/delete on detection
|
||||||
- Scan files via share intent
|
- Scan files via share intent
|
||||||
- Scan newly installed/updated apps
|
- Scan newly installed/updated apps
|
||||||
- Better GUI
|
- Better GUI
|
||||||
|
|
|
@ -6,7 +6,7 @@ android {
|
||||||
applicationId "us.spotco.malwarescanner"
|
applicationId "us.spotco.malwarescanner"
|
||||||
minSdkVersion 16
|
minSdkVersion 16
|
||||||
targetSdkVersion 26
|
targetSdkVersion 26
|
||||||
versionCode 35
|
versionCode 36
|
||||||
versionName "2.7"
|
versionName "2.7"
|
||||||
resConfigs "en"
|
resConfigs "en"
|
||||||
}
|
}
|
||||||
|
|
|
@ -93,8 +93,6 @@ public class MainActivity extends AppCompatActivity {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
OrbotHelper.get(this).init();
|
|
||||||
|
|
||||||
requestPermissions();
|
requestPermissions();
|
||||||
|
|
||||||
Utils.considerStartService(this);
|
Utils.considerStartService(this);
|
||||||
|
|
|
@ -106,7 +106,7 @@ public class MalwareScannerService extends Service {
|
||||||
}
|
}
|
||||||
malwareMonitors.clear();
|
malwareMonitors.clear();
|
||||||
System.gc();
|
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() {
|
private void setForeground() {
|
||||||
|
@ -130,4 +130,4 @@ public class MalwareScannerService extends Service {
|
||||||
notificationManager.notify(-1, foregroundNotification.build());
|
notificationManager.notify(-1, foregroundNotification.build());
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue