Skip to content

Commit

Permalink
General clean up, removed pointless Activity
Browse files Browse the repository at this point in the history
  • Loading branch information
Arsylk committed Mar 10, 2020
1 parent cd77393 commit b2c1192
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 38 deletions.
18 changes: 17 additions & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
apply plugin: 'com.android.application'

android {
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
compileSdkVersion 28
defaultConfig {
applicationId "com.arsylk.xmicrog"
Expand All @@ -9,14 +13,26 @@ android {
versionCode 1
versionName "1.0"
}
signingConfigs {
def keystoreProperties = new Properties()
keystoreProperties.load(new FileInputStream(rootProject.file('keystore.properties')))
release {
keyAlias keystoreProperties.getProperty('keyAlias')
keyPassword keystoreProperties.getProperty('keyPassword')
storeFile file(keystoreProperties.getProperty('storeFile'))
storePassword keystoreProperties.getProperty('storePassword')
}
}
buildTypes {
release {
minifyEnabled false
signingConfig signingConfigs.release
}
}
}

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])

compileOnly 'de.robv.android.xposed:api:82'
compileOnly 'de.robv.android.xposed:api:82:sources'
}
17 changes: 3 additions & 14 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,23 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.arsylk.xmicrog">

<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">

<activity
android:name=".activities.MainActivity">
<intent-filter>
<action android:name="android.intent.action.VIEW"/>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
android:icon="@mipmap/ic_launcher"
android:roundIcon="@mipmap/ic_launcher_round" tools:ignore="GoogleAppIndexingWarning">

<meta-data
android:name="xposedmodule"
Expand Down
14 changes: 0 additions & 14 deletions app/src/main/java/com/arsylk/xmicrog/activities/MainActivity.java

This file was deleted.

9 changes: 0 additions & 9 deletions app/src/main/res/layout/activity_main.xml

This file was deleted.

0 comments on commit b2c1192

Please sign in to comment.