-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Online Modus / Offline Modus hinzugefügt -> Kann deaktiviert werden bzw. ist deaktiviert wenn keine Datenverbindung besteht. - App Intro hinzugefügt. - Der Spotify Button kann nun ausgeblendet werden (Direkt beim ersten Start oder in den Einstellungen) - Cover aktualisiert - Die drei Fragezeichen Kids Folgen hinzugefügt.
- Loading branch information
Showing
609 changed files
with
17,495 additions
and
17,225 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 0 additions & 1 deletion
1
app/build/generated/aboutLibraries/debug/res/raw/aboutlibraries.json
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
101 changes: 101 additions & 0 deletions
101
...class_source_out/debug/out/de/msdevs/einschlafhilfe/databinding/ActivityAboutBinding.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
// Generated by view binder compiler. Do not edit! | ||
package de.msdevs.einschlafhilfe.databinding; | ||
|
||
import android.view.LayoutInflater; | ||
import android.view.View; | ||
import android.view.ViewGroup; | ||
import android.widget.Button; | ||
import android.widget.RelativeLayout; | ||
import android.widget.TextView; | ||
import androidx.annotation.NonNull; | ||
import androidx.annotation.Nullable; | ||
import androidx.viewbinding.ViewBinding; | ||
import androidx.viewbinding.ViewBindings; | ||
import de.msdevs.einschlafhilfe.R; | ||
import java.lang.NullPointerException; | ||
import java.lang.Override; | ||
import java.lang.String; | ||
|
||
public final class ActivityAboutBinding implements ViewBinding { | ||
@NonNull | ||
private final RelativeLayout rootView; | ||
|
||
@NonNull | ||
public final Button btnLicense; | ||
|
||
@NonNull | ||
public final Button btnPrivacy; | ||
|
||
@NonNull | ||
public final Button btnQuellcode; | ||
|
||
@NonNull | ||
public final TextView tvNameHeader; | ||
|
||
private ActivityAboutBinding(@NonNull RelativeLayout rootView, @NonNull Button btnLicense, | ||
@NonNull Button btnPrivacy, @NonNull Button btnQuellcode, @NonNull TextView tvNameHeader) { | ||
this.rootView = rootView; | ||
this.btnLicense = btnLicense; | ||
this.btnPrivacy = btnPrivacy; | ||
this.btnQuellcode = btnQuellcode; | ||
this.tvNameHeader = tvNameHeader; | ||
} | ||
|
||
@Override | ||
@NonNull | ||
public RelativeLayout getRoot() { | ||
return rootView; | ||
} | ||
|
||
@NonNull | ||
public static ActivityAboutBinding inflate(@NonNull LayoutInflater inflater) { | ||
return inflate(inflater, null, false); | ||
} | ||
|
||
@NonNull | ||
public static ActivityAboutBinding inflate(@NonNull LayoutInflater inflater, | ||
@Nullable ViewGroup parent, boolean attachToParent) { | ||
View root = inflater.inflate(R.layout.activity_about, parent, false); | ||
if (attachToParent) { | ||
parent.addView(root); | ||
} | ||
return bind(root); | ||
} | ||
|
||
@NonNull | ||
public static ActivityAboutBinding bind(@NonNull View rootView) { | ||
// The body of this method is generated in a way you would not otherwise write. | ||
// This is done to optimize the compiled bytecode for size and performance. | ||
int id; | ||
missingId: { | ||
id = R.id.btn_license; | ||
Button btnLicense = ViewBindings.findChildViewById(rootView, id); | ||
if (btnLicense == null) { | ||
break missingId; | ||
} | ||
|
||
id = R.id.btn_privacy; | ||
Button btnPrivacy = ViewBindings.findChildViewById(rootView, id); | ||
if (btnPrivacy == null) { | ||
break missingId; | ||
} | ||
|
||
id = R.id.btn_quellcode; | ||
Button btnQuellcode = ViewBindings.findChildViewById(rootView, id); | ||
if (btnQuellcode == null) { | ||
break missingId; | ||
} | ||
|
||
id = R.id.tv_name_header; | ||
TextView tvNameHeader = ViewBindings.findChildViewById(rootView, id); | ||
if (tvNameHeader == null) { | ||
break missingId; | ||
} | ||
|
||
return new ActivityAboutBinding((RelativeLayout) rootView, btnLicense, btnPrivacy, | ||
btnQuellcode, tvNameHeader); | ||
} | ||
String missingId = rootView.getResources().getResourceName(id); | ||
throw new NullPointerException("Missing required view with ID: ".concat(missingId)); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
69 changes: 0 additions & 69 deletions
69
...s_source_out/debug/out/de/msdevs/einschlafhilfe/databinding/PlaceholderLayoutBinding.java
This file was deleted.
Oops, something went wrong.
Binary file not shown.
2 changes: 1 addition & 1 deletion
2
app/build/intermediates/app_metadata/debug/app-metadata.properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
appMetadataVersion=1.1 | ||
androidGradlePluginVersion=7.2.0 | ||
androidGradlePluginVersion=7.2.1 |
Oops, something went wrong.