V2.0
0
R6S/.gitignore → App/.gitignore
vendored
0
R6S/.idea/.name → App/.idea/.name
generated
0
R6S/.idea/gradle.xml → App/.idea/gradle.xml
generated
0
R6S/.idea/misc.xml → App/.idea/misc.xml
generated
0
R6S/app/.gitignore → App/app/.gitignore
vendored
32
App/app/build.gradle
Normal file
@@ -0,0 +1,32 @@
|
||||
apply plugin: 'com.android.application'
|
||||
|
||||
android {
|
||||
compileSdkVersion 25
|
||||
buildToolsVersion "25.0.2"
|
||||
defaultConfig {
|
||||
applicationId "io.nicco.r6s"
|
||||
minSdkVersion 21
|
||||
targetSdkVersion 25
|
||||
versionCode 20
|
||||
versionName "2.0"
|
||||
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
||||
}
|
||||
buildTypes {
|
||||
release {
|
||||
minifyEnabled false
|
||||
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
compile fileTree(dir: 'libs', include: ['*.jar'])
|
||||
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
|
||||
exclude group: 'com.android.support', module: 'support-annotations'
|
||||
})
|
||||
compile 'com.android.support:appcompat-v7:25.3.1'
|
||||
compile 'com.android.support.constraint:constraint-layout:1.0.2'
|
||||
compile 'com.android.support:design:25.3.1'
|
||||
compile 'com.android.support:support-v4:25.3.1'
|
||||
testCompile 'org.testng:testng:6.9.6'
|
||||
}
|
@@ -1,6 +1,6 @@
|
||||
# Add project specific ProGuard rules here.
|
||||
# By default, the flags in this file are appended to flags specified
|
||||
# in /Users/Nicco/Library/Android/sdk/tools/proguard/proguard-android.txt
|
||||
# in /Users/nicco/Library/Android/sdk/tools/proguard/proguard-android.txt
|
||||
# You can edit the include path and order by changing the proguardFiles
|
||||
# directive in build.gradle.
|
||||
#
|
||||
@@ -15,3 +15,11 @@
|
||||
#-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,0 +1,26 @@
|
||||
package io.nicco.r6s;
|
||||
|
||||
import android.content.Context;
|
||||
import android.support.test.InstrumentationRegistry;
|
||||
import android.support.test.runner.AndroidJUnit4;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.runner.RunWith;
|
||||
|
||||
import static org.junit.Assert.assertEquals;
|
||||
|
||||
/**
|
||||
* Instrumentation test, which will execute on an Android device.
|
||||
*
|
||||
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
|
||||
*/
|
||||
@RunWith(AndroidJUnit4.class)
|
||||
public class ExampleInstrumentedTest {
|
||||
@Test
|
||||
public void useAppContext() throws Exception {
|
||||
// Context of the app under test.
|
||||
Context appContext = InstrumentationRegistry.getTargetContext();
|
||||
|
||||
assertEquals("io.nicco.test", appContext.getPackageName());
|
||||
}
|
||||
}
|
@@ -1,4 +1,4 @@
|
||||
<?xml version="1.1" encoding="utf-8"?>
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="io.nicco.r6s">
|
||||
|
||||
@@ -6,12 +6,10 @@
|
||||
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=".home"
|
||||
android:label="@string/app_name"
|
||||
android:theme="@style/AppTheme.NoActionBar">
|
||||
android:theme="@style/Theme.AppCompat.NoActionBar">
|
||||
<activity android:name="io.nicco.r6s.main">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
|
BIN
App/app/src/main/assets/img/factions/0.png
Normal file
After Width: | Height: | Size: 65 KiB |
BIN
App/app/src/main/assets/img/factions/1.png
Normal file
After Width: | Height: | Size: 88 KiB |
BIN
App/app/src/main/assets/img/factions/2.png
Normal file
After Width: | Height: | Size: 64 KiB |
BIN
App/app/src/main/assets/img/factions/3.png
Normal file
After Width: | Height: | Size: 80 KiB |
BIN
App/app/src/main/assets/img/factions/4.png
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
App/app/src/main/assets/img/factions/5.png
Normal file
After Width: | Height: | Size: 84 KiB |
BIN
App/app/src/main/assets/img/factions/6.png
Normal file
After Width: | Height: | Size: 88 KiB |
BIN
App/app/src/main/assets/img/factions/7.png
Normal file
After Width: | Height: | Size: 90 KiB |
BIN
App/app/src/main/assets/img/factions/8.png
Normal file
After Width: | Height: | Size: 107 KiB |
BIN
App/app/src/main/assets/img/factions/9.png
Normal file
After Width: | Height: | Size: 52 KiB |
BIN
App/app/src/main/assets/img/maps/0/0.jpg
Normal file
After Width: | Height: | Size: 195 KiB |
BIN
App/app/src/main/assets/img/maps/0/1.jpg
Normal file
After Width: | Height: | Size: 212 KiB |
BIN
App/app/src/main/assets/img/maps/0/2.jpg
Normal file
After Width: | Height: | Size: 217 KiB |
BIN
App/app/src/main/assets/img/maps/0/3.jpg
Normal file
After Width: | Height: | Size: 184 KiB |
BIN
App/app/src/main/assets/img/maps/1/0.jpg
Normal file
After Width: | Height: | Size: 244 KiB |
BIN
App/app/src/main/assets/img/maps/1/1.jpg
Normal file
After Width: | Height: | Size: 258 KiB |
BIN
App/app/src/main/assets/img/maps/1/2.jpg
Normal file
After Width: | Height: | Size: 234 KiB |
BIN
App/app/src/main/assets/img/maps/10/0.jpg
Normal file
After Width: | Height: | Size: 240 KiB |
BIN
App/app/src/main/assets/img/maps/10/1.jpg
Normal file
After Width: | Height: | Size: 257 KiB |
BIN
App/app/src/main/assets/img/maps/10/2.jpg
Normal file
After Width: | Height: | Size: 95 KiB |
BIN
App/app/src/main/assets/img/maps/10/3.jpg
Normal file
After Width: | Height: | Size: 84 KiB |
BIN
App/app/src/main/assets/img/maps/11/0.jpg
Normal file
After Width: | Height: | Size: 302 KiB |
BIN
App/app/src/main/assets/img/maps/11/1.jpg
Normal file
After Width: | Height: | Size: 312 KiB |
BIN
App/app/src/main/assets/img/maps/11/2.jpg
Normal file
After Width: | Height: | Size: 308 KiB |
BIN
App/app/src/main/assets/img/maps/11/3.jpg
Normal file
After Width: | Height: | Size: 305 KiB |
BIN
App/app/src/main/assets/img/maps/12/0.jpg
Normal file
After Width: | Height: | Size: 141 KiB |
BIN
App/app/src/main/assets/img/maps/12/1.jpg
Normal file
After Width: | Height: | Size: 171 KiB |
BIN
App/app/src/main/assets/img/maps/12/2.jpg
Normal file
After Width: | Height: | Size: 183 KiB |
BIN
App/app/src/main/assets/img/maps/12/3.jpg
Normal file
After Width: | Height: | Size: 178 KiB |
BIN
App/app/src/main/assets/img/maps/13/0.jpg
Normal file
After Width: | Height: | Size: 246 KiB |
BIN
App/app/src/main/assets/img/maps/13/1.jpg
Normal file
After Width: | Height: | Size: 270 KiB |
BIN
App/app/src/main/assets/img/maps/13/2.jpg
Normal file
After Width: | Height: | Size: 268 KiB |
BIN
App/app/src/main/assets/img/maps/13/3.jpg
Normal file
After Width: | Height: | Size: 249 KiB |
BIN
App/app/src/main/assets/img/maps/13/4.jpg
Normal file
After Width: | Height: | Size: 234 KiB |
BIN
App/app/src/main/assets/img/maps/2/0.jpg
Normal file
After Width: | Height: | Size: 255 KiB |
BIN
App/app/src/main/assets/img/maps/2/1.jpg
Normal file
After Width: | Height: | Size: 277 KiB |
BIN
App/app/src/main/assets/img/maps/2/2.jpg
Normal file
After Width: | Height: | Size: 268 KiB |
BIN
App/app/src/main/assets/img/maps/2/3.jpg
Normal file
After Width: | Height: | Size: 235 KiB |
BIN
App/app/src/main/assets/img/maps/3/0.jpg
Normal file
After Width: | Height: | Size: 183 KiB |
BIN
App/app/src/main/assets/img/maps/3/1.jpg
Normal file
After Width: | Height: | Size: 199 KiB |
BIN
App/app/src/main/assets/img/maps/3/2.jpg
Normal file
After Width: | Height: | Size: 192 KiB |
BIN
App/app/src/main/assets/img/maps/3/3.jpg
Normal file
After Width: | Height: | Size: 174 KiB |
BIN
App/app/src/main/assets/img/maps/4/0.jpg
Normal file
After Width: | Height: | Size: 211 KiB |
BIN
App/app/src/main/assets/img/maps/4/1.jpg
Normal file
After Width: | Height: | Size: 218 KiB |
BIN
App/app/src/main/assets/img/maps/4/2.jpg
Normal file
After Width: | Height: | Size: 224 KiB |
BIN
App/app/src/main/assets/img/maps/4/3.jpg
Normal file
After Width: | Height: | Size: 194 KiB |
BIN
App/app/src/main/assets/img/maps/5/0.jpg
Normal file
After Width: | Height: | Size: 301 KiB |
BIN
App/app/src/main/assets/img/maps/5/1.jpg
Normal file
After Width: | Height: | Size: 309 KiB |
BIN
App/app/src/main/assets/img/maps/5/2.jpg
Normal file
After Width: | Height: | Size: 319 KiB |
BIN
App/app/src/main/assets/img/maps/5/3.jpg
Normal file
After Width: | Height: | Size: 324 KiB |
BIN
App/app/src/main/assets/img/maps/6/0.jpg
Normal file
After Width: | Height: | Size: 305 KiB |
BIN
App/app/src/main/assets/img/maps/6/1.jpg
Normal file
After Width: | Height: | Size: 308 KiB |
BIN
App/app/src/main/assets/img/maps/6/2.jpg
Normal file
After Width: | Height: | Size: 311 KiB |
BIN
App/app/src/main/assets/img/maps/6/3.jpg
Normal file
After Width: | Height: | Size: 304 KiB |
BIN
App/app/src/main/assets/img/maps/6/4.jpg
Normal file
After Width: | Height: | Size: 294 KiB |
BIN
App/app/src/main/assets/img/maps/7/0.jpg
Normal file
After Width: | Height: | Size: 259 KiB |
BIN
App/app/src/main/assets/img/maps/7/1.jpg
Normal file
After Width: | Height: | Size: 268 KiB |
BIN
App/app/src/main/assets/img/maps/7/2.jpg
Normal file
After Width: | Height: | Size: 267 KiB |
BIN
App/app/src/main/assets/img/maps/7/3.jpg
Normal file
After Width: | Height: | Size: 251 KiB |
BIN
App/app/src/main/assets/img/maps/8/0.jpg
Normal file
After Width: | Height: | Size: 206 KiB |
BIN
App/app/src/main/assets/img/maps/8/1.jpg
Normal file
After Width: | Height: | Size: 213 KiB |
BIN
App/app/src/main/assets/img/maps/8/2.jpg
Normal file
After Width: | Height: | Size: 220 KiB |
BIN
App/app/src/main/assets/img/maps/8/3.jpg
Normal file
After Width: | Height: | Size: 193 KiB |
BIN
App/app/src/main/assets/img/maps/9/0.jpg
Normal file
After Width: | Height: | Size: 240 KiB |
BIN
App/app/src/main/assets/img/maps/9/1.jpg
Normal file
After Width: | Height: | Size: 268 KiB |
BIN
App/app/src/main/assets/img/maps/9/2.jpg
Normal file
After Width: | Height: | Size: 240 KiB |
BIN
App/app/src/main/assets/img/maps/9/3.jpg
Normal file
After Width: | Height: | Size: 229 KiB |
BIN
App/app/src/main/assets/img/no_img.png
Normal file
After Width: | Height: | Size: 24 KiB |
Before Width: | Height: | Size: 177 KiB After Width: | Height: | Size: 177 KiB |
Before Width: | Height: | Size: 219 KiB After Width: | Height: | Size: 219 KiB |
Before Width: | Height: | Size: 156 KiB After Width: | Height: | Size: 156 KiB |
Before Width: | Height: | Size: 220 KiB After Width: | Height: | Size: 220 KiB |
Before Width: | Height: | Size: 88 KiB After Width: | Height: | Size: 88 KiB |
Before Width: | Height: | Size: 168 KiB After Width: | Height: | Size: 168 KiB |
Before Width: | Height: | Size: 167 KiB After Width: | Height: | Size: 167 KiB |
Before Width: | Height: | Size: 179 KiB After Width: | Height: | Size: 179 KiB |
Before Width: | Height: | Size: 149 KiB After Width: | Height: | Size: 149 KiB |
Before Width: | Height: | Size: 166 KiB After Width: | Height: | Size: 166 KiB |
Before Width: | Height: | Size: 165 KiB After Width: | Height: | Size: 165 KiB |
Before Width: | Height: | Size: 206 KiB After Width: | Height: | Size: 206 KiB |
Before Width: | Height: | Size: 160 KiB After Width: | Height: | Size: 160 KiB |