Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
ProgArkProject
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Sixten Müller
ProgArkProject
Merge requests
!6
"...git@gitlab.stud.idi.ntnu.no:idatt2106-v23-03/backend.git" did not exist on "e3ac8d8934d43b108b4fb195eedce111195d657a"
Resolve "Set up Firebase"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Set up Firebase"
5-set-up-firebase
into
main
Overview
0
Commits
3
Pipelines
0
Changes
11
Merged
Sixten Müller
requested to merge
5-set-up-firebase
into
main
1 year ago
Overview
0
Commits
3
Pipelines
0
Changes
11
Expand
Closes
#5 (closed)
0
0
Merge request reports
Compare
main
version 2
62e9f5f3
1 year ago
version 1
77a811d7
1 year ago
main (base)
and
latest version
latest version
31f1473a
3 commits,
1 year ago
version 2
62e9f5f3
2 commits,
1 year ago
version 1
77a811d7
1 commit,
1 year ago
11 files
+
98
−
21
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
11
Search (e.g. *.vue) (Ctrl+P)
android/src/com/wordbattle/game/AndroidInterfaceClass.java
0 → 100644
+
24
−
0
Options
package
com.wordbattle.game
;
import
com.google.firebase.database.DatabaseReference
;
import
com.google.firebase.database.FirebaseDatabase
;
import
com.wordbattle.game.network.FirebaseInterface
;
public
class
AndroidInterfaceClass
implements
FirebaseInterface
{
FirebaseDatabase
database
;
DatabaseReference
myRef
;
public
AndroidInterfaceClass
()
{
database
=
FirebaseDatabase
.
getInstance
(
"https://wordbattle-96156-default-rtdb.europe-west1.firebasedatabase.app"
);
myRef
=
database
.
getReference
(
"message"
);
myRef
.
setValue
(
"HelloWorld"
);
}
@Override
public
void
SomeFunction
()
{
System
.
out
.
println
(
"Something works"
);
}
}
Loading