Add Android Project

This commit is contained in:
GuilhermeWerner 2021-05-23 15:13:50 -03:00
parent 83feb942ab
commit 0b027bebb4
22 changed files with 271 additions and 97 deletions

40
library/build.gradle.kts Normal file
View file

@ -0,0 +1,40 @@
plugins {
// Apply the scala Plugin to add support for Scala.
scala
// Apply the java-library plugin for API and implementation separation.
`java-library`
}
group = "com.tribufu.sdk"
version = "0.0.1"
repositories {
// Use Maven Central for resolving dependencies.
mavenCentral()
}
dependencies {
// Use Scala 2.13 in our library project
implementation("org.scala-lang:scala-library:2.13.3")
// This dependency is used internally, and not exposed to consumers on their own compile classpath.
implementation("com.google.guava:guava:30.0-jre")
// Use Scalatest for testing our library
testImplementation("junit:junit:4.13.1")
testImplementation("org.scalatest:scalatest_2.13:3.2.3")
testImplementation("org.scalatestplus:junit-4-13_2.13:3.2.2.0")
// Need scala-xml at test runtime
testRuntimeOnly("org.scala-lang.modules:scala-xml_2.13:1.2.0")
// This dependency is exported to consumers, that is to say found on their compile classpath.
api("org.apache.commons:commons-math3:3.6.1")
}
tasks.jar {
manifest {
attributes(mapOf("Implementation-Title" to project.name, "Implementation-Version" to project.version))
}
}

View file

@ -0,0 +1,5 @@
// Copyright (c) TribuFu. All Rights Reserved
package com.tribufu.sdk
class Handler {}

View file

@ -0,0 +1,5 @@
// Copyright (c) TribuFu. All Rights Reserved
package com.tribufu.sdk
class System {}

View file

@ -0,0 +1,17 @@
// Copyright (c) TribuFu. All Rights Reserved
package com.tribufu.sdk
class TribuFu {
Init()
// Used to load the 'TribuFu' library on application startup.
private def Init() {
System.loadLibrary("TribuFu_jvm")
}
/**
* A native method that is implemented by the 'TribuFu' native library.
*/
@native def Hello(input: String): String
}

View file

@ -0,0 +1,11 @@
// Copyright (c) TribuFu. All Rights Reserved
package com.tribufu.sdk.models
class Email() {
val address = ""
val added = ""
var updated = ""
var confirmed = false
var primary = true
}

View file

@ -0,0 +1,52 @@
// Copyright (c) TribuFu. All Rights Reserved
package com.tribufu.sdk.models
class User {
val id = ""
val name = ""
var display_name = ""
var role = Role.User
var confirmed = false
var two_factor_enabled = false
var first_name = ""
var last_name = ""
var verified = false
var parental_control = false
var profile_url = ""
var public_birthday = false
var birthday = ""
var location = ""
var timezone = ""
var language = ""
var currency = ""
var theme = Theme.Light
var ip_address = ""
val registration_ip_address = ""
val Joined = ""
var Updated = ""
var failed_logins = 0
var about = ""
var profile_views = 0
var content = 0
var avatar_url = ""
var background_url = ""
var status = Status.Offline
var last_online = ""
var last_activity = ""
var last_post = ""
var warnings = 0
var last_warn = ""
}
object Role extends Enumeration {
val User, Bot, Helper, Tester, Developer, Moderator, Admin, Root = Value
}
object Theme extends Enumeration {
val Light, Dark = Value
}
object Status extends Enumeration {
val Offline, Away, Disturb, Online, Playing = Value
}

View file

@ -0,0 +1,16 @@
// Copyright (c) TribuFu. All Rights Reserved
package com.tribufu.sdk
import org.junit.runner.RunWith
import org.scalatest.funsuite.AnyFunSuite
import org.scalatestplus.junit.JUnitRunner
@RunWith(classOf[JUnitRunner])
class TribuFuSuite extends AnyFunSuite {
test("Hello is always true") {
//def library = new TribuFu()
//assert(library.Hello("Scala") == "Scala")
assert(true)
}
}