Skip to content
Snippets Groups Projects
Commit 2cd68695 authored by boqiren's avatar boqiren
Browse files

new GUI for App

parent 1799eef9
Branches
No related tags found
No related merge requests found
Showing
with 164 additions and 1 deletion
...@@ -10,11 +10,12 @@ buildscript { ...@@ -10,11 +10,12 @@ buildscript {
} }
} }
dependencies { dependencies {
classpath 'com.android.tools.build:gradle:3.2.1' classpath 'com.android.tools.build:gradle:3.1.3'
// NOTE: Do not place your application dependencies here; they belong // NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files // in the individual module build.gradle files
} }
} }
......
common/src/main/ic_launcher-web.png

18.4 KiB

Source diff could not be displayed: it is too large. Options to address this: view the blob.
Source diff could not be displayed: it is too large. Options to address this: view the blob.
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@color/ic_launcher_background"/>
<foreground android:drawable="@drawable/ic_launcher_foreground"/>
</adaptive-icon>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@color/ic_launcher_background"/>
<foreground android:drawable="@drawable/ic_launcher_foreground"/>
</adaptive-icon>
\ No newline at end of file
common/src/main/res/mipmap-hdpi/ic_launcher.png

1.76 KiB

common/src/main/res/mipmap-hdpi/ic_launcher_round.png

3.66 KiB

common/src/main/res/mipmap-mdpi/ic_launcher.png

1.21 KiB

common/src/main/res/mipmap-mdpi/ic_launcher_round.png

2.22 KiB

common/src/main/res/mipmap-xhdpi/ic_launcher.png

2.5 KiB

common/src/main/res/mipmap-xhdpi/ic_launcher_round.png

5.26 KiB

common/src/main/res/mipmap-xxhdpi/ic_launcher.png

3.81 KiB

common/src/main/res/mipmap-xxhdpi/ic_launcher_round.png

8.2 KiB

common/src/main/res/mipmap-xxxhdpi/ic_launcher.png

5.55 KiB

common/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png

11.8 KiB

<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="ic_launcher_background">#FFFFFF</color>
</resources>
\ No newline at end of file
/build
apply plugin: 'com.android.application'
android {
compileSdkVersion 28
defaultConfig {
applicationId "com.example.gui"
minSdkVersion 15
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support:design:28.0.0'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
implementation "org.java-websocket:Java-WebSocket:1.3.0"
}
# Add project specific ProGuard rules here.
# You can control the set of applied configuration files using the
# proguardFiles setting in build.gradle.
#
# For more details, see
# http://developer.android.com/guide/developing/tools/proguard.html
# If your project uses WebView with JS, uncomment the following
# and specify the fully qualified class name to the JavaScript interface
# class:
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
# public *;
#}
# Uncomment this to preserve the line number information for
# debugging stack traces.
#-keepattributes SourceFile,LineNumberTable
# If you keep the line number information, uncomment this to
# hide the original source file name.
#-renamesourcefileattribute SourceFile
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment