Version: v1.0 (or specify version number)
Date: October 26, 2023 (or specify date)
Author(s): [Your Name(s) or Team Name]
Contact: [Your Email Address or Contact Information]
Privacy Policy
This privacy policy applies to the Internet Aman app (hereby referred to as "Application") for mobile devices that was created by ITSEC (hereby referred to as "Service Provider") as a Free service. This service is intended for use "AS IS".
Information Collection and Use
The Application collects information when you download and use it. This information may include information such as
- Your device's Internet Protocol address (e.g. IP address)
- The pages of the Application that you visit, the time and date of your visit, the time spent on those pages
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
class MainActivity : AppCompatActivity() { | |
override fun onCreate(savedInstanceState: Bundle?) { | |
... | |
// todo: singleton? | |
val preference = SecurePreferences.create(this@MainActivity) | |
binding.btnSave.setOnClickListener { | |
val code = binding.etSecretCode.text.toString() |
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
import android.content.Context | |
import androidx.security.crypto.EncryptedSharedPreferences | |
import androidx.security.crypto.MasterKey | |
class SecurePreferences private constructor(context: Context, prefName: String) { | |
companion object { | |
fun create(context: Context): SecurePreferences { | |
return SecurePreferences(context, "secure_prefs") | |
} |
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
import android.util.Base64; | |
import androidx.test.ext.junit.runners.AndroidJUnit4; | |
import org.junit.Test; | |
import org.junit.runner.RunWith; | |
import java.security.InvalidKeyException; | |
import java.security.NoSuchAlgorithmException; |
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
com.google.myandroid undangan 63c41c95acfb886bf4b0a0512149a09b207dff2502a0831e7ca6e2a6fe9181xx | |
com.google.androidsmstesT Undangan Pernikahan.apk 63c41c95acfb886bf4b0a0512149a09b207dff2502a0831e7ca6e2a6fe9181de | |
com.pay.jomopay Jomo Pay.apk 5091a5894fd1736908845223d16007dc24deb8f9ff0e155cae1cd267418fbd73 | |
com.smamolot.mp4fix Download2 (1).apk fb316717892ce1a5236b1d22727e48d959a4e6f6264164e81ee60cd02ceb03c3 | |
com.if831c2cf3041abe0 Virus - Screamer.apk e7df0632fe903c7fd9358315068ad1f166305fad956133c385a1246d5889d5e5 | |
com.my.newproject10 موت 1.0.apk 121810666588793b6ffa833d00b650e89e576dfb761f2b30b5b947099b3fb4fa | |
com.ldeqd Hack Castle Clash_signed2.apk e504ff4501da2412758babadabb05a761ae6edacd043d68334e384d94fe4f4ac | |
com.appmicaixaappapk.app MiCaixa.apk fd20ec0d4e54a7511378b20042e3817c965ef392293f5f9d5015b5eb9d066b6f | |
xuzjgkd.sstlojddh am.apk ec1106a9735034ef21a1126717ac337d825844a1b60ab8bcf32e0c835fde60df | |
object.towns.cole.load lifesum.apk 6fdacea265cc6385b65c9c3fd35970342e2bf377fb1f361eb54cec0349e90ee2 |
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
import androidx.compose.foundation.ExperimentalFoundationApi | |
import androidx.compose.foundation.layout.Box | |
import androidx.compose.foundation.layout.Column | |
import androidx.compose.foundation.layout.fillMaxSize | |
import androidx.compose.foundation.layout.fillMaxWidth | |
import androidx.compose.foundation.layout.padding | |
import androidx.compose.foundation.pager.HorizontalPager | |
import androidx.compose.foundation.pager.rememberPagerState | |
import androidx.compose.material.MaterialTheme | |
import androidx.compose.material.Scaffold |
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
fun main() { | |
print("Enter your name: ") | |
val input = readLine() | |
if (input != null) { | |
println("Name: $input") | |
// print the result using our 'String.toUpperCase()' func | |
println("toUpperCase : ${input.toUpperCase()}") |
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
import android.content.Context | |
import android.net.ConnectivityManager | |
import android.net.Network | |
import android.net.NetworkCapabilities | |
import kotlinx.coroutines.CoroutineScope | |
import kotlinx.coroutines.channels.awaitClose | |
import kotlinx.coroutines.flow.SharingStarted | |
import kotlinx.coroutines.flow.StateFlow | |
import kotlinx.coroutines.flow.callbackFlow | |
import kotlinx.coroutines.flow.stateIn |
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
import android.content.Context; | |
import com.google.gson.Gson; | |
import com.google.gson.GsonBuilder; | |
import java.io.BufferedInputStream; | |
import java.io.FileInputStream; | |
import java.io.FileNotFoundException; | |
import java.io.IOException; | |
import java.io.InputStream; |
NewerOlder