Upload code for android-app

This commit is contained in:
DrMaxNix 2021-11-02 14:58:18 +01:00
parent 4f8cfa8632
commit ea4577b176
58 changed files with 1351 additions and 0 deletions

15
android-app/.gitignore vendored Normal file
View File

@ -0,0 +1,15 @@
*.iml
.gradle
/local.properties
/.idea/caches
/.idea/libraries
/.idea/modules.xml
/.idea/workspace.xml
/.idea/navEditor.xml
/.idea/assetWizardSettings.xml
.DS_Store
/build
/captures
.externalNativeBuild
.cxx
local.properties

3
android-app/.idea/.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
# Default ignored files
/shelf/
/workspace.xml

1
android-app/.idea/.name Normal file
View File

@ -0,0 +1 @@
Futharkboard

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="CompilerConfiguration">
<bytecodeTargetLevel target="11" />
</component>
</project>

View File

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="GradleMigrationSettings" migrationVersion="1" />
<component name="GradleSettings">
<option name="linkedExternalProjectsSettings">
<GradleProjectSettings>
<option name="testRunner" value="GRADLE" />
<option name="distributionType" value="DEFAULT_WRAPPED" />
<option name="externalProjectPath" value="$PROJECT_DIR$" />
<option name="modules">
<set>
<option value="$PROJECT_DIR$" />
<option value="$PROJECT_DIR$/app" />
</set>
</option>
<option name="resolveModulePerSourceSet" value="false" />
</GradleProjectSettings>
</option>
</component>
</project>

View File

@ -0,0 +1,32 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="DesignSurface">
<option name="filePathToZoomLevelMap">
<map>
<entry key="app/src/main/res/drawable/empty.xml" value="0.2140625" />
<entry key="app/src/main/res/drawable/ic_launcher_foreground.xml" value="1.0" />
<entry key="app/src/main/res/drawable/key_del.xml" value="0.2140625" />
<entry key="app/src/main/res/drawable/key_enter.xml" value="0.2140625" />
<entry key="app/src/main/res/drawable/key_space.xml" value="0.2140625" />
<entry key="app/src/main/res/layout/activity_main.xml" value="0.340625" />
<entry key="app/src/main/res/layout/fragment_main.xml" value="0.35572916666666665" />
<entry key="app/src/main/res/layout/fragment_settings.xml" value="0.35572916666666665" />
<entry key="app/src/main/res/layout/fragment_start.xml" value="0.35572916666666665" />
<entry key="app/src/main/res/layout/key_preview.xml" value="0.35572916666666665" />
<entry key="app/src/main/res/layout/keyboard_view.xml" value="0.35572916666666665" />
<entry key="app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml" value="0.32314814814814813" />
<entry key="app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml" value="0.36615384615384616" />
<entry key="app/src/main/res/mipmap-anydpi-v26/icon.xml" value="0.36615384615384616" />
<entry key="app/src/main/res/mipmap-anydpi-v26/icon_round.xml" value="0.36615384615384616" />
<entry key="app/src/main/res/xml/method.xml" value="0.35572916666666665" />
<entry key="app/src/main/res/xml/number_pad.xml" value="0.35572916666666665" />
</map>
</option>
</component>
<component name="ProjectRootManager" version="2" languageLevel="JDK_11" default="true" project-jdk-name="11" project-jdk-type="JavaSDK">
<output url="file://$PROJECT_DIR$/build/classes" />
</component>
<component name="ProjectType">
<option name="id" value="Android" />
</component>
</project>

1
android-app/app/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/build

View File

@ -0,0 +1,41 @@
plugins {
id 'com.android.application'
}
android {
compileSdk 31
defaultConfig {
applicationId "de.drmaxnix.futharkboard"
minSdk 24
targetSdk 31
versionCode 1
versionName "1.0.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
buildFeatures {
viewBinding true
}
}
dependencies {
implementation 'androidx.appcompat:appcompat:1.3.1'
implementation 'com.google.android.material:material:1.4.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.1'
testImplementation 'junit:junit:4.+'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
}

21
android-app/app/proguard-rules.pro vendored Normal file
View File

@ -0,0 +1,21 @@
# 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

Binary file not shown.

View File

@ -0,0 +1,20 @@
{
"version": 3,
"artifactType": {
"type": "APK",
"kind": "Directory"
},
"applicationId": "de.drmaxnix.futharkboard",
"variantName": "release",
"elements": [
{
"type": "SINGLE",
"filters": [],
"attributes": [],
"versionCode": 1,
"versionName": "1.0.0",
"outputFile": "app-release.apk"
}
],
"elementType": "File"
}

View File

@ -0,0 +1,35 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="de.drmaxnix.futharkboard">
<application
android:allowBackup="true"
android:icon="@mipmap/icon"
android:label="@string/app_name"
android:roundIcon="@mipmap/icon_round"
android:supportsRtl="true"
android:theme="@style/Theme.Futharkboard">
<activity
android:name=".Main"
android:label="@string/app_name"
android:theme="@style/Theme.Futharkboard.NoActionBar"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<service android:name="IME"
android:label="@string/app_name"
android:permission="android.permission.BIND_INPUT_METHOD"
android:exported="false">
<intent-filter>
<action android:name="android.view.InputMethod" />
</intent-filter>
<meta-data android:name="android.view.im" android:resource="@xml/method" />
</service>
</application>
</manifest>

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

View File

@ -0,0 +1,75 @@
package de.drmaxnix.futharkboard;
import android.inputmethodservice.InputMethodService;
import android.inputmethodservice.Keyboard;
import android.inputmethodservice.KeyboardView;
import android.text.TextUtils;
import android.view.View;
import android.view.inputmethod.InputConnection;
public class IME extends InputMethodService implements KeyboardView.OnKeyboardActionListener {
@Override
public View onCreateInputView(){
// APPLY KEYBOARD LAYOUT //
KeyboardView keyboardView = (KeyboardView)getLayoutInflater().inflate(R.layout.keyboard_view, null);
Keyboard keyboard = new Keyboard(this, R.xml.futhark);
keyboardView.setKeyboard(keyboard);
keyboardView.setOnKeyboardActionListener(this);
return keyboardView;
}
@Override
public void onKey(int primaryCode, int[] keyCodes){
// GET INPUT-CONNECTION //
InputConnection input_connection = getCurrentInputConnection();
//make sure we got something
if(input_connection == null){
return;
}
// HANDLE INPUT //
switch(primaryCode){
case Keyboard.KEYCODE_DELETE:
// DELETE KEY //
//check if some text is selected
CharSequence selectedText = input_connection.getSelectedText(0);
if (TextUtils.isEmpty(selectedText)) {
//no selection, delete previous character
input_connection.deleteSurroundingText(1, 0);
} else {
//delete selection
input_connection.commitText("", 1);
}
break;
default:
// NORMAL CHARACTER INPUT //
char code = (char)primaryCode;
input_connection.commitText(String.valueOf(code), 1);
}
}
@Override
public void onPress(int primaryCode) { }
@Override
public void onRelease(int primaryCode) { }
@Override
public void onText(CharSequence text) { }
@Override
public void swipeLeft() { }
@Override
public void swipeRight() { }
@Override
public void swipeDown() { }
@Override
public void swipeUp() { }
}

View File

@ -0,0 +1,52 @@
package de.drmaxnix.futharkboard;
import android.content.pm.PackageInfo;
import android.content.pm.PackageManager;
import android.os.Bundle;
import android.widget.TextView;
import com.google.android.material.tabs.TabLayout;
import androidx.viewpager.widget.ViewPager;
import androidx.appcompat.app.AppCompatActivity;
import de.drmaxnix.futharkboard.databinding.ActivityMainBinding;
import de.drmaxnix.futharkboard.ui.main.SectionsPagerAdapter;
public class Main extends AppCompatActivity {
private ActivityMainBinding binding;
private TabLayout tabs;
@Override
protected void onCreate(Bundle savedInstanceState){
super.onCreate(savedInstanceState);
binding = ActivityMainBinding.inflate(getLayoutInflater());
setContentView(binding.getRoot());
// SET VERSION TEXT //
try {
//get version of the app
PackageInfo pInfo = this.getPackageManager().getPackageInfo(this.getPackageName(), 0);
String version = pInfo.versionName;
//set text
TextView version_text = (TextView)findViewById(R.id.version);
version_text.setText(version);
} catch(PackageManager.NameNotFoundException e){
e.printStackTrace();
}
// INITIALIZE TAB LAYOUT //
//get new sections-pager-adapter
SectionsPagerAdapter sectionsPagerAdapter = new SectionsPagerAdapter(this, getSupportFragmentManager());
//connect with view-pager
ViewPager viewPager = binding.viewPager;
viewPager.setAdapter(sectionsPagerAdapter);
//connect with tab-selector
tabs = binding.tabs;
tabs.setupWithViewPager(viewPager);
}
}

View File

@ -0,0 +1,42 @@
package de.drmaxnix.futharkboard.ui.main;
import android.content.Context;
import androidx.annotation.Nullable;
import androidx.annotation.StringRes;
import androidx.fragment.app.Fragment;
import androidx.fragment.app.FragmentManager;
import androidx.fragment.app.FragmentPagerAdapter;
import de.drmaxnix.futharkboard.R;
public class SectionsPagerAdapter extends FragmentPagerAdapter {
private final Context context;
public SectionsPagerAdapter(Context context, FragmentManager fm){
super(fm);
this.context = context;
}
@Override
public Fragment getItem(int position){
switch(position){
case 0:
return new Start();
}
return null;
}
@Nullable
@Override
public CharSequence getPageTitle(int position){
@StringRes
final int[] TAB_TITLES = new int[]{R.string.tab_name_start};
return context.getResources().getString(TAB_TITLES[position]);
}
@Override
public int getCount(){
return 1;
}
}

View File

@ -0,0 +1,170 @@
package de.drmaxnix.futharkboard.ui.main;
import android.content.Context;
import android.content.Intent;
import android.content.pm.PackageInfo;
import android.content.pm.PackageManager;
import android.net.Uri;
import android.os.Bundle;
import android.provider.Settings;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.view.inputmethod.InputMethodInfo;
import android.view.inputmethod.InputMethodManager;
import android.widget.Button;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.fragment.app.Fragment;
import de.drmaxnix.futharkboard.R;
public class Start extends Fragment {
private View view;
public Start(){
}
@Override
public void onCreate(Bundle savedInstanceState){
super.onCreate(savedInstanceState);
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState){
// GENERATE VIEW //
View view = inflater.inflate(R.layout.fragment_start, container, false);
//save
this.view = view;
// OPEN-FUTHARKBOARD-WEBSITE-BUTTON ONCLICK CALLBACK //
Button open_futharkboard_website = (Button)view.findViewById(R.id.open_futharkboard_website);
open_futharkboard_website.setOnClickListener(new View.OnClickListener(){
public void onClick(View v){
view.getContext().startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("https://futharkboard.drmaxnix.de")));
}
});
// OPEN-IME-SETTINGS-BUTTON ONCLICK CALLBACK //
Button open_ime_settings = (Button)view.findViewById(R.id.open_ime_settings);
open_ime_settings.setOnClickListener(new View.OnClickListener(){
public void onClick(View v){
view.getContext().startActivity(new Intent(Settings.ACTION_INPUT_METHOD_SETTINGS));
}
});
// BUGREPORT-MAIL-BUTTON ONCLICK CALLBACK //
Button bugreport_mail = (Button)view.findViewById(R.id.bugreport_mail);
bugreport_mail.setOnClickListener(new View.OnClickListener(){
public void onClick(View v){
try {
// GET APP'S VERSION //
//get version of the app
PackageInfo pInfo = view.getContext().getPackageManager().getPackageInfo(view.getContext().getPackageName(), 0);
String version = pInfo.versionName;
// SEND MAIL INTENT //
Intent intent = new Intent(Intent.ACTION_SENDTO);
intent.setData(Uri.fromParts("mailto","futharkboard@drmaxnix.de", null));
//set extra data
intent.putExtra(Intent.EXTRA_SUBJECT, "Bug/suggestion for FutharkBoard v" + version);
//start intent
view.getContext().startActivity(intent);
} catch(PackageManager.NameNotFoundException e){
e.printStackTrace();
}
}
});
// OPEN-GH-BUTTON ONCLICK CALLBACK //
Button open_gh = (Button)view.findViewById(R.id.open_gh);
open_gh.setOnClickListener(new View.OnClickListener(){
public void onClick(View v){
view.getContext().startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("https://github.com/DrMaxNix/futharkboard")));
}
});
// OPEN-GH-LICENSE-BUTTON ONCLICK CALLBACK //
Button open_gh_license = (Button)view.findViewById(R.id.open_gh_license);
open_gh_license.setOnClickListener(new View.OnClickListener(){
public void onClick(View v){
view.getContext().startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("https://github.com/DrMaxNix/futharkboard/blob/main/LICENSE")));
}
});
// RETURN GENERATED VIEW //
return view;
}
@Override
public void onViewCreated(@NonNull View view, @Nullable Bundle savedInstanceState){
}
@Override
public void onStart(){
super.onStart();
// RELOAD ENABLED-STATE OF IME //
futhark_board_is_enabled_reload();
}
/*
Reload all view related to the futhark_board_is_enabled-state
*/
private void futhark_board_is_enabled_reload(){
boolean futhark_board_is_enabled = futhark_board_is_enabled();
//get related views
View status_not_enabled = view.findViewById(R.id.status_not_enabled);
View status_enabled = view.findViewById(R.id.status_enabled);
//change status banner
if(!futhark_board_is_enabled){
//not enabled, show info on how to enable
status_not_enabled.setVisibility(View.VISIBLE);
status_enabled.setVisibility(View.GONE);
} else {
//enabled, show that it's enabled
status_not_enabled.setVisibility(View.GONE);
status_enabled.setVisibility(View.VISIBLE);
}
}
/*
Check if the futharkboard is enabled in settings
*/
private boolean futhark_board_is_enabled(){
// GET IMM //
InputMethodManager imm = (InputMethodManager) this.getContext().getSystemService(Context.INPUT_METHOD_SERVICE);
// SEARCH //
for(InputMethodInfo imi : imm.getEnabledInputMethodList()){
if(imi.getServiceName().equals("de.drmaxnix.futharkboard.IME")){
//found!
return true;
}
}
// NOTHING FOUND //
return false;
}
}

View File

@ -0,0 +1,8 @@
<vector android:alpha="0" android:height="24dp"
android:viewportHeight="24" android:viewportWidth="24"
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#00000000"
android:pathData="M18,6v6a3,3 0,0 1,-3 3h-10l4,-4m0,8l-4,-4"
android:strokeColor="#00000000" android:strokeLineCap="round"
android:strokeLineJoin="round" android:strokeWidth="2"/>
</vector>

View File

@ -0,0 +1,20 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="24">
<path
android:pathData="M20,6a1,1 0,0 1,1 1v10a1,1 0,0 1,-1 1h-11l-5,-5a1.5,1.5 0,0 1,0 -2l5,-5z"
android:strokeLineJoin="round"
android:strokeWidth="2"
android:fillColor="#00000000"
android:strokeColor="#FFFFFFFF"
android:strokeLineCap="round"/>
<path
android:pathData="M12,10l4,4m0,-4l-4,4"
android:strokeLineJoin="round"
android:strokeWidth="2"
android:fillColor="#00000000"
android:strokeColor="#FFFFFFFF"
android:strokeLineCap="round"/>
</vector>

View File

@ -0,0 +1,13 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="24">
<path
android:pathData="M18,6v6a3,3 0,0 1,-3 3h-10l4,-4m0,8l-4,-4"
android:strokeLineJoin="round"
android:strokeWidth="2"
android:fillColor="#00000000"
android:strokeColor="#FFFFFFFF"
android:strokeLineCap="round"/>
</vector>

View File

@ -0,0 +1,13 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="24">
<path
android:pathData="M4,10v3a1,1 0,0 0,1 1h14a1,1 0,0 0,1 -1v-3"
android:strokeLineJoin="round"
android:strokeWidth="2"
android:fillColor="#00000000"
android:strokeColor="#FFFFFFFF"
android:strokeLineCap="round"/>
</vector>

View File

@ -0,0 +1,71 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".Main">
<com.google.android.material.appbar.AppBarLayout
style="@style/Theme.Futharkboard.AppBarOverlay"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<ImageView
android:id="@+id/imageView2"
android:layout_width="?actionBarSize"
android:layout_height="?actionBarSize"
android:layout_gravity="start|center_vertical"
app:srcCompat="@mipmap/icon_foreground" />
<TextView
android:id="@+id/title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:minHeight="?actionBarSize"
android:paddingTop="@dimen/appbar_padding"
android:paddingStart="0dp"
android:paddingBottom="@dimen/appbar_padding"
android:paddingEnd="0dp"
android:text="@string/app_name"
android:textAlignment="viewStart"
android:textAppearance="@style/TextAppearance.Widget.AppCompat.Toolbar.Title"
android:textColor="@color/white" />
<TextView
android:id="@+id/version"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:minHeight="?actionBarSize"
android:paddingTop="@dimen/appbar_padding"
android:paddingStart="6dp"
android:paddingBottom="@dimen/appbar_padding"
android:paddingEnd="@dimen/appbar_padding"
android:textAlignment="viewStart"
android:textAppearance="@style/TextAppearance.Widget.AppCompat.Toolbar.Subtitle"
android:textColor="@color/white" />
</LinearLayout>
<com.google.android.material.tabs.TabLayout
android:id="@+id/tabs"
style="@style/Theme.Futharkboard.TabLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/Theme.Futharkboard.TabLayout"
app:tabGravity="fill" />
</com.google.android.material.appbar.AppBarLayout>
<androidx.viewpager.widget.ViewPager
android:id="@+id/view_pager"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
</androidx.coordinatorlayout.widget.CoordinatorLayout>

View File

@ -0,0 +1,148 @@
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".ui.main.Start">
<ScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content">
<LinearLayout
android:id="@+id/page"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="20dp"
android:orientation="vertical">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/start_about_text"
android:theme="@style/Theme.Futharkboard.DescriptiveText" />
<Button
android:id="@+id/open_futharkboard_website"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/start_open_futharkboard_website" />
</LinearLayout>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/start_subheader_status"
android:theme="@style/Theme.Futharkboard.Subtitle" />
<LinearLayout
android:id="@+id/status_not_enabled"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="20dp"
android:orientation="vertical">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textColor="#F00"
android:text="@string/start_status_not_enabled"
android:theme="@style/Theme.Futharkboard.DescriptiveText" />
<Button
android:id="@+id/open_ime_settings"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/start_open_ime_settings" />
</LinearLayout>
<LinearLayout
android:id="@+id/status_enabled"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="20dp"
android:orientation="vertical">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textColor="#0F0"
android:text="@string/start_status_enabled"
android:theme="@style/Theme.Futharkboard.DescriptiveText" />
</LinearLayout>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/start_subheader_bugreport"
android:theme="@style/Theme.Futharkboard.Subtitle" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="20dp"
android:orientation="vertical">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/start_bugreport_text"
android:theme="@style/Theme.Futharkboard.DescriptiveText" />
<Button
android:id="@+id/bugreport_mail"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/start_bugreport_mail" />
</LinearLayout>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/start_subheader_foss"
android:theme="@style/Theme.Futharkboard.Subtitle" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="20dp"
android:orientation="vertical">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/start_foss_text"
android:theme="@style/Theme.Futharkboard.DescriptiveText" />
<Button
android:id="@+id/open_gh"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/start_foss_open_gh" />
<Button
android:id="@+id/open_gh_license"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/start_foss_open_gh_license" />
</LinearLayout>
</LinearLayout>
</ScrollView>
</FrameLayout>

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<TextView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="0dp"
android:layout_height="0dp"
android:gravity="center"
android:background="#00000000"
android:textColor="#00000000"
android:textSize="0sp">
</TextView>

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<android.inputmethodservice.KeyboardView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/keyboard_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:keyPreviewLayout="@layout/key_preview"
android:layout_alignParentBottom="true">
</android.inputmethodservice.KeyboardView>

View File

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@color/theme"/>
<foreground android:drawable="@mipmap/icon_foreground"/>
</adaptive-icon>

View File

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@color/theme"/>
<foreground android:drawable="@mipmap/icon_foreground"/>
</adaptive-icon>

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

View File

@ -0,0 +1,39 @@
<resources xmlns:tools="http://schemas.android.com/tools">
<!-- Base application theme. -->
<style name="Theme.Futharkboard" parent="Theme.MaterialComponents.DayNight.DarkActionBar">
<!-- Primary brand color. -->
<item name="colorPrimary">@color/theme</item>
<item name="colorPrimaryVariant">@color/theme_dark</item>
<item name="colorOnPrimary">@color/white</item>
<!-- Secondary brand color. -->
<item name="colorSecondary">#0F0</item>
<item name="colorSecondaryVariant">#0F0</item>
<item name="colorOnSecondary">#0F0</item>
<!-- Status bar color. -->
<item name="android:statusBarColor" tools:targetApi="l">@color/theme_dark</item>
<!-- Customize your theme here. -->
</style>
<style name="Theme.Futharkboard.NoActionBar">
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
</style>
<style name="Theme.Futharkboard.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar">
<item name="android:background">@color/theme_dark</item>
</style>
<style name="Theme.Futharkboard.TabLayout" parent="Widget.Design.TabLayout">
<item name="tabBackground">@color/theme_dark</item>
<item name="tabIndicatorColor">@color/white</item>
</style>
<style name="Theme.Futharkboard.Subtitle">
<item name="android:background">@color/dark_gray</item>
<item name="android:textColor">@color/white</item>
<item name="android:padding">10dp</item>
<item name="android:textAllCaps">true</item>
<item name="android:textAlignment">center</item>
</style>
<style name="Theme.Futharkboard.PopupOverlay" parent="ThemeOverlay.AppCompat.Light" />
</resources>

View File

@ -0,0 +1,6 @@
<resources>
<!-- Example customization of dimensions originally defined in res/values/dimens.xml
(such as screen margins) for screens with more than 820dp of available width. This
would include 7" and 10" devices in landscape (~960dp and ~1280dp respectively). -->
<dimen name="activity_horizontal_margin">64dp</dimen>
</resources>

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="theme_light">#98d7b9</color>
<color name="theme">#6daa8e</color>
<color name="theme_dark">#246148</color>
<color name="black">#FF000000</color>
<color name="light_gray">#DDFFFFFF</color>
<color name="dark_gray">#FF444444</color>
<color name="white">#FFFFFFFF</color>
</resources>

View File

@ -0,0 +1,8 @@
<resources>
<!-- Default screen margins, per the Android Design guidelines. -->
<dimen name="activity_horizontal_margin">16dp</dimen>
<dimen name="activity_vertical_margin">16dp</dimen>
<dimen name="appbar_padding">16dp</dimen>
<dimen name="fab_margin">16dp</dimen>
<dimen name="appbar_padding_top">8dp</dimen>
</resources>

View File

@ -0,0 +1,22 @@
<resources>
<string name="app_name">FutharkBoard</string>
<string name="tab_name_start">Start</string>
<string name="start_about_text">Made for all the awesome people who have wished for an App like this for ages.\n~ Kim &lt;33</string>
<string name="start_open_futharkboard_website">FutharkBoard Website</string>
<string name="start_subheader_status">Status</string>
<string name="start_status_not_enabled">FutharkBoard is not enabled in your System Settings</string>
<string name="start_open_ime_settings">Open Input Settings</string>
<string name="start_status_enabled">FutharkBoard is enabled</string>
<string name="start_subheader_bugreport">Bug Report</string>
<string name="start_bugreport_text">If you have stumbled upon a mistake or have some suggestions to make FutharkBoard better, feel free to contact me via futharkboard@drmaxnix.de.</string>
<string name="start_bugreport_mail">Write a Mail</string>
<string name="start_subheader_foss">FOSS</string>
<string name="start_foss_text">This App is Free and OpenSource Software. Anyone can get this App for free and review the sourcecode as they like. The app is released under the MIT license by DrMaxNix.</string>
<string name="start_foss_open_gh">View on GitHub</string>
<string name="start_foss_open_gh_license">View License</string>
</resources>

View File

@ -0,0 +1,45 @@
<resources xmlns:tools="http://schemas.android.com/tools">
<!-- Base application theme. -->
<style name="Theme.Futharkboard" parent="Theme.MaterialComponents.DayNight.DarkActionBar">
<!-- Primary brand color. -->
<item name="colorPrimary">@color/theme</item>
<item name="colorPrimaryVariant">@color/theme_dark</item>
<item name="colorOnPrimary">@color/white</item>
<!-- Secondary brand color. -->
<item name="colorSecondary">#0F0</item>
<item name="colorSecondaryVariant">#0FF</item>
<item name="colorOnSecondary">@color/white</item>
<!-- Status bar color. -->
<item name="android:statusBarColor" tools:targetApi="l">@color/theme</item>
<!-- Customize your theme here. -->
</style>
<style name="Theme.Futharkboard.NoActionBar">
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
</style>
<style name="Theme.Futharkboard.AppBarOverlay" parent="ThemeOverlay.AppCompat.ActionBar">
<item name="android:background">@color/theme</item>
</style>
<style name="Theme.Futharkboard.TabLayout" parent="Widget.Design.TabLayout">
<item name="tabBackground">@color/theme</item>
<item name="tabSelectedTextColor">@color/white</item>
<item name="tabTextColor">@color/light_gray</item>
<item name="tabIndicatorColor">@color/white</item>
</style>
<style name="Theme.Futharkboard.Subtitle">
<item name="android:background">@color/theme_dark</item>
<item name="android:textColor">@color/white</item>
<item name="android:padding">10dp</item>
<item name="android:textAllCaps">true</item>
<item name="android:textAlignment">center</item>
</style>
<style name="Theme.Futharkboard.DescriptiveText">
<item name="android:paddingBottom">16dp</item>
</style>
<style name="Theme.Futharkboard.PopupOverlay" parent="ThemeOverlay.AppCompat.Light" />
</resources>

View File

@ -0,0 +1,50 @@
<?xml version="1.0" encoding="utf-8"?>
<Keyboard xmlns:android="http://schemas.android.com/apk/res/android"
android:keyWidth="9%p"
android:horizontalGap="0.9%p"
android:verticalGap="3dip"
android:keyHeight="45dip">
<Row>
<!-- Q --><Key android:codes="5852" android:keyLabel="ᛜ" android:keyEdgeFlags="left" android:horizontalGap="1%p" />
<!-- W --><Key android:codes="5817" android:keyLabel="ᚹ" />
<!-- E --><Key android:codes="5846" android:keyLabel="" />
<!-- R --><Key android:codes="5809" android:keyLabel="ᚱ" />
<!-- T --><Key android:codes="5839" android:keyLabel="ᛏ" />
<!-- Y --><Key android:codes="5831" android:keyLabel="ᛇ" />
<!-- U --><Key android:codes="5794" android:keyLabel="ᚢ" />
<!-- I --><Key android:codes="5825" android:keyLabel="" />
<!-- O --><Key android:codes="5855" android:keyLabel="ᛟ" />
<!-- P --><Key android:codes="5832" android:keyLabel="ᛈ" android:keyEdgeFlags="right" />
</Row>
<Row>
<!-- A --><Key android:codes="5800" android:keyLabel="ᚨ" android:keyEdgeFlags="left" android:horizontalGap="5.7%p" />
<!-- S --><Key android:codes="5834" android:keyLabel="ᛊ" />
<!-- D --><Key android:codes="5854" android:keyLabel="ᛞ" />
<!-- F --><Key android:codes="5792" android:keyLabel="ᚠ" />
<!-- G --><Key android:codes="5815" android:keyLabel="" />
<!-- H --><Key android:codes="5818" android:keyLabel="ᚺ" />
<!-- J --><Key android:codes="5827" android:keyLabel="ᛃ" />
<!-- K --><Key android:codes="5810" android:keyLabel="" />
<!-- L --><Key android:codes="5850" android:keyLabel="ᛚ" android:keyEdgeFlags="right" />
</Row>
<Row>
<!-- Z --><Key android:codes="5833" android:keyLabel="ᛉ" android:keyEdgeFlags="left" android:horizontalGap="10.6%p" />
<!-- X --><Key android:codes="5798" android:keyLabel="ᚦ" />
<!-- C --><Key android:codes="5810" android:keyLabel="" />
<!-- V --><Key android:codes="5817" android:keyLabel="ᚹ" />
<!-- B --><Key android:codes="5842" android:keyLabel="ᛒ" />
<!-- N --><Key android:codes="5822" android:keyLabel="ᚾ" />
<!-- M --><Key android:codes="5847" android:keyLabel="ᛗ" />
<!-- delete --><Key android:codes="-5" android:keyIcon="@drawable/key_del" android:iconPreview="@drawable/empty" android:keyWidth="20%p" android:keyEdgeFlags="right" android:isRepeatable="true" />
</Row>
<Row android:rowEdgeFlags="bottom" android:horizontalGap="0.50%p">
<!-- : --><Key android:codes="5868" android:keyLabel="" android:keyWidth="12.5%p" android:keyEdgeFlags="left" />
<!-- . --><Key android:codes="5867" android:keyLabel="᛫" android:keyWidth="12.5%p" />
<!-- space --><Key android:codes="32" android:keyIcon="@drawable/key_space" android:iconPreview="@drawable/empty" android:keyWidth="54%p" android:isRepeatable="true" />
<!-- enter --><Key android:codes="10" android:keyIcon="@drawable/key_enter" android:iconPreview="@drawable/empty" android:keyWidth="22%p" android:keyEdgeFlags="right" />
</Row>
</Keyboard>

View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<input-method
xmlns:android="http://schemas.android.com/apk/res/android"
android:settingsActivity="de.drmaxnix.futharkboard.Main">
<subtype
android:imeSubtypeMode="keyboard" />
</input-method>

17
android-app/build.gradle Normal file
View File

@ -0,0 +1,17 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
classpath "com.android.tools.build:gradle:7.0.1"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}

View File

@ -0,0 +1,19 @@
# Project-wide Gradle settings.
# IDE (e.g. Android Studio) users:
# Gradle settings configured through the IDE *will override*
# any settings specified in this file.
# For more details on how to configure your build environment visit
# http://www.gradle.org/docs/current/userguide/build_environment.html
# Specifies the JVM arguments used for the daemon process.
# The setting is particularly useful for tweaking memory settings.
org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8
# When configured, Gradle will run in incubating parallel mode.
# This option should only be used with decoupled projects. More details, visit
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true
# AndroidX package structure to make it clearer which packages are bundled with the
# Android operating system, and which are packaged with your app"s APK
# https://developer.android.com/topic/libraries/support-library/androidx-rn
android.useAndroidX=true
# Automatically convert third-party libraries to use AndroidX
android.enableJetifier=true

Binary file not shown.

View File

@ -0,0 +1,6 @@
#Sat Oct 30 15:20:34 CEST 2021
distributionBase=GRADLE_USER_HOME
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0.2-bin.zip
distributionPath=wrapper/dists
zipStorePath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME

185
android-app/gradlew vendored Normal file
View File

@ -0,0 +1,185 @@
#!/usr/bin/env sh
#
# Copyright 2015 the original author or authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
##############################################################################
##
## Gradle start up script for UN*X
##
##############################################################################
# Attempt to set APP_HOME
# Resolve links: $0 may be a link
PRG="$0"
# Need this for relative symlinks.
while [ -h "$PRG" ] ; do
ls=`ls -ld "$PRG"`
link=`expr "$ls" : '.*-> \(.*\)$'`
if expr "$link" : '/.*' > /dev/null; then
PRG="$link"
else
PRG=`dirname "$PRG"`"/$link"
fi
done
SAVED="`pwd`"
cd "`dirname \"$PRG\"`/" >/dev/null
APP_HOME="`pwd -P`"
cd "$SAVED" >/dev/null
APP_NAME="Gradle"
APP_BASE_NAME=`basename "$0"`
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
# Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD="maximum"
warn () {
echo "$*"
}
die () {
echo
echo "$*"
echo
exit 1
}
# OS specific support (must be 'true' or 'false').
cygwin=false
msys=false
darwin=false
nonstop=false
case "`uname`" in
CYGWIN* )
cygwin=true
;;
Darwin* )
darwin=true
;;
MINGW* )
msys=true
;;
NONSTOP* )
nonstop=true
;;
esac
CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
# Determine the Java command to use to start the JVM.
if [ -n "$JAVA_HOME" ] ; then
if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
# IBM's JDK on AIX uses strange locations for the executables
JAVACMD="$JAVA_HOME/jre/sh/java"
else
JAVACMD="$JAVA_HOME/bin/java"
fi
if [ ! -x "$JAVACMD" ] ; then
die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
Please set the JAVA_HOME variable in your environment to match the
location of your Java installation."
fi
else
JAVACMD="java"
which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
Please set the JAVA_HOME variable in your environment to match the
location of your Java installation."
fi
# Increase the maximum file descriptors if we can.
if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then
MAX_FD_LIMIT=`ulimit -H -n`
if [ $? -eq 0 ] ; then
if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
MAX_FD="$MAX_FD_LIMIT"
fi
ulimit -n $MAX_FD
if [ $? -ne 0 ] ; then
warn "Could not set maximum file descriptor limit: $MAX_FD"
fi
else
warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
fi
fi
# For Darwin, add options to specify how the application appears in the dock
if $darwin; then
GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
fi
# For Cygwin or MSYS, switch paths to Windows format before running java
if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then
APP_HOME=`cygpath --path --mixed "$APP_HOME"`
CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
JAVACMD=`cygpath --unix "$JAVACMD"`
# We build the pattern for arguments to be converted via cygpath
ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
SEP=""
for dir in $ROOTDIRSRAW ; do
ROOTDIRS="$ROOTDIRS$SEP$dir"
SEP="|"
done
OURCYGPATTERN="(^($ROOTDIRS))"
# Add a user-defined pattern to the cygpath arguments
if [ "$GRADLE_CYGPATTERN" != "" ] ; then
OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
fi
# Now convert the arguments - kludge to limit ourselves to /bin/sh
i=0
for arg in "$@" ; do
CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
else
eval `echo args$i`="\"$arg\""
fi
i=`expr $i + 1`
done
case $i in
0) set -- ;;
1) set -- "$args0" ;;
2) set -- "$args0" "$args1" ;;
3) set -- "$args0" "$args1" "$args2" ;;
4) set -- "$args0" "$args1" "$args2" "$args3" ;;
5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
esac
fi
# Escape application args
save () {
for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
echo " "
}
APP_ARGS=`save "$@"`
# Collect all arguments for the java command, following the shell quoting and substitution rules
eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS"
exec "$JAVACMD" "$@"

89
android-app/gradlew.bat vendored Normal file
View File

@ -0,0 +1,89 @@
@rem
@rem Copyright 2015 the original author or authors.
@rem
@rem Licensed under the Apache License, Version 2.0 (the "License");
@rem you may not use this file except in compliance with the License.
@rem You may obtain a copy of the License at
@rem
@rem https://www.apache.org/licenses/LICENSE-2.0
@rem
@rem Unless required by applicable law or agreed to in writing, software
@rem distributed under the License is distributed on an "AS IS" BASIS,
@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@rem See the License for the specific language governing permissions and
@rem limitations under the License.
@rem
@if "%DEBUG%" == "" @echo off
@rem ##########################################################################
@rem
@rem Gradle startup script for Windows
@rem
@rem ##########################################################################
@rem Set local scope for the variables with windows NT shell
if "%OS%"=="Windows_NT" setlocal
set DIRNAME=%~dp0
if "%DIRNAME%" == "" set DIRNAME=.
set APP_BASE_NAME=%~n0
set APP_HOME=%DIRNAME%
@rem Resolve any "." and ".." in APP_HOME to make it shorter.
for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi
@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m"
@rem Find java.exe
if defined JAVA_HOME goto findJavaFromJavaHome
set JAVA_EXE=java.exe
%JAVA_EXE% -version >NUL 2>&1
if "%ERRORLEVEL%" == "0" goto execute
echo.
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
echo.
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation.
goto fail
:findJavaFromJavaHome
set JAVA_HOME=%JAVA_HOME:"=%
set JAVA_EXE=%JAVA_HOME%/bin/java.exe
if exist "%JAVA_EXE%" goto execute
echo.
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
echo.
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation.
goto fail
:execute
@rem Setup the command line
set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
@rem Execute Gradle
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %*
:end
@rem End local scope for the variables with windows NT shell
if "%ERRORLEVEL%"=="0" goto mainEnd
:fail
rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
rem the _cmd.exe /c_ return code!
if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
exit /b 1
:mainEnd
if "%OS%"=="Windows_NT" endlocal
:omega

View File

@ -0,0 +1,10 @@
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
jcenter() // Warning: this repository is going to shut down soon
}
}
rootProject.name = "Futharkboard"
include ':app'