Commit 96a43a7c authored by Thomas's avatar Thomas
Browse files

Fix build issue

parent dd0a432b
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -499,8 +499,8 @@
    <string name="post_message">செய்தியை இடுகையிடுதல்…</string>
    <string name="post_message_text">செய்தி %d/ %d</string>
    <string name="instance_health_uptime">நேரம்: %, 2f %%</string>
    <string name="show_content">&lt;! [CDATA [உள்ளடக்கத்தைக் காட்டு&gt;]&gt;&gt;</string>
    <string name="hide_content">&lt;! [CDATA [உள்ளடக்கத்தை மறைக்க &lt;]]&gt;</string>
    <string name="show_content"><![CDATA[உள்ளடக்கத்தைக் காட்டு&gt;]]></string>
    <string name="hide_content"><![CDATA[உள்ளடக்கத்தை மறைக்க &lt;]]></string>
    <string name="stop_recording">பதிவு செய்வதை நிறுத்துங்கள்</string>
    <string name="report_title">அறிக்கை %1$s</string>
    <string name="report_indication_title_status">இந்த இடுகையுடன் என்ன நடக்கிறது என்று சொல்லுங்கள்</string>
+6 −1
Original line number Diff line number Diff line
@@ -6,7 +6,7 @@ android {
    defaultConfig {
        minSdkVersion 15
        targetSdkVersion 33

        multiDexEnabled true
        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

    }
@@ -25,11 +25,16 @@ android {
// Add a new configuration to hold your dependencies
configurations {
    libConfig
    implementation.exclude group: 'org.jetbrains', module: 'annotations'
    configureEach {
        exclude group: 'androidx.lifecycle', module: 'lifecycle-viewmodel-ktx'
    }
}

dependencies {
    implementation fileTree(include: ['*.jar'], dir: 'libs')
    //noinspection GradleCompatible
    implementation 'androidx.multidex:multidex:2.0.1'
    implementation 'androidx.appcompat:appcompat:1.5.1'
    implementation 'androidx.preference:preference:1.2.0'
    implementation 'com.google.android.material:material:1.8.0'
+1 −1
Original line number Diff line number Diff line
@@ -4,7 +4,7 @@ android {
    compileSdkVersion 33

    defaultConfig {
        minSdkVersion 8
        minSdkVersion 14
        targetSdkVersion 33
    }
    buildTypes {
+0 −13
Original line number Diff line number Diff line
package de.timfreiheit.mathjax.android;

import android.app.Application;
import android.test.ApplicationTestCase;

/**
 * <a href="http://d.android.com/tools/testing/testing_android.html">Testing Fundamentals</a>
 */
public class ApplicationTest extends ApplicationTestCase<Application> {
    public ApplicationTest() {
        super(Application.class);
    }
}
 No newline at end of file