Minor fixes

This commit is contained in:
Tad 2018-07-25 21:08:35 -04:00
parent 6d1a0d95ab
commit 27146b19c5
5 changed files with 8 additions and 10 deletions

2
.idea/misc.xml generated
View file

@ -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">

View file

@ -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

View file

@ -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"
} }

View file

@ -93,8 +93,6 @@ public class MainActivity extends AppCompatActivity {
} }
}); });
OrbotHelper.get(this).init();
requestPermissions(); requestPermissions();
Utils.considerStartService(this); Utils.considerStartService(this);

View file

@ -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() {