This file contains hidden or 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
<!DOCTYPE html><html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width"> <title>Privacy Policy</title> <style>body{font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; padding:1em;}</style></head> <body><h2>Privacy Policy</h2> <p> [Developer name or Company name] built the uCalc app as [open source | free | freemium | ad-supported | commercial] app. This SERVICE is provided by [Developer name or Company name] [at no cost] and is intended for use as is. </p> <p>This page is used to inform website visitors regarding [my|our] policies with the collection, use, and disclosure of Personal Information if anyone decided to use [my|our] Service. </p> <p>If you choose to use [my|our] Service, then you agree to the collection and use of information in relation to this policy. The Personal Information that [I | we] collect is used for providing and improving the Service. [I | we] will not use or share your information with anyone except as described in this Privacy Policy. </p> <p> |
This file contains hidden or 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
UPC_REST_URL="https://www.appdemo.test.something" | |
AMPLITUDE_KEY="abc123" | |
FABRIC_ID=abc123 #<---(without double quotes) | |
FACEBOOK_ID="abc123" |
This file contains hidden or 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
{ | |
"project_info": { | |
"project_number": "**REMOVED**", | |
"firebase_url": "**REMOVED**", | |
"project_id": "unofficial-upc", | |
"storage_bucket": "unofficial-upc.appspot.com" | |
}, | |
"client": [ | |
{ | |
"client_info": { |
This file contains hidden or 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
package com.example.pack.one; | |
public class MyClass { | |
interface Listener{ | |
void foo(); | |
} | |
private Listener mListener; |
This file contains hidden or 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
package com.example.pack.two; | |
// some imports | |
import com.example.package.one.MyClass; | |
public class MainActivity extends AppCompatActivity { | |
@Override | |
protected void onCreate(Bundle savedInstanceState) { | |
super.onCreate(savedInstanceState); |
This file contains hidden or 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
package com.example.pack.two | |
// some imports | |
import com.example.pack.one.MyClass | |
class MainActivity : AppCompatActivity() { | |
override fun onCreate(savedInstanceState: Bundle?) { | |
super.onCreate(savedInstanceState) | |
setContentView(R.layout.activity_main) |
This file contains hidden or 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
package com.example.pack.two | |
// some imports | |
import com.example.pack.one.MyClass | |
class MainActivity : AppCompatActivity() { | |
override fun onCreate(savedInstanceState: Bundle?) { | |
super.onCreate(savedInstanceState) | |
setContentView(R.layout.activity_main) |
This file contains hidden or 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
package com.example.pack.two; | |
// some imports | |
import com.example.pack.one.MyClass; | |
import com.example.pack.one.MyClass.Listener; | |
public final class MainActivity extends AppCompatActivity { | |
This file contains hidden or 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
<!DOCTYPE html><html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width"> <title>Privacy Policy</title> <style>body{font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; padding:1em;}</style></head> <body><h2>Privacy Policy</h2> <p> UPC Devs built the UPC Location app as a Free app. This SERVICE is provided by UPC Devs at no cost and is intended for use as is. | |
</p> <p>This page is used to inform website visitors regarding my policies with the collection, use, and | |
disclosure of Personal Information if anyone decided to use my Service. | |
</p> <p>If you choose to use my Service, then you agree to the collection and use of information in relation | |
to this policy. The Personal Information that I collect is used for providing and improving the | |
Service. I will not use or share your information with anyone except as described | |
in this Privacy Policy. | |
</ |
This file contains hidden or 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
package com.test | |
import androidx.appcompat.app.AppCompatActivity | |
import android.os.Bundle | |
import android.view.LayoutInflater | |
import androidx.viewbinding.ViewBinding | |
import com.test.databinding.ActivityMainBinding | |
abstract class BindingActivity<T: ViewBinding>(val name: String): AppCompatActivity(){ |
OlderNewer