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
**Privacy Policy** | |
Dikas Weather Info does not collect, store, or share any personal information or data from users. | |
**Information Collection and Use** | |
Our app does not require any personal information or data from users. We do not collect any form of data, including but not limited to, personal information, usage data, or device information. | |
**Third-Party Services** |
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
override fun onActivityResult(requestCode: Int, resultCode: Int, data: Intent?) { | |
super.onActivityResult(requestCode, resultCode, data) | |
if (requestCode == RaveConstants.RAVE_REQUEST_CODE && data != null) { | |
val message: String? = data.getStringExtra("response").toString() | |
Log.d("TAG", "response: $message") | |
/** | |
Check if message object is not null. | |
You can also test for null type but as well check for "null" |
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.decagon.secondweektask | |
import java.util.* | |
fun main() { | |
println("Please enter a string") | |
val text: String? = readLine() | |
//input Validation |
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
public class Main { | |
public static void main(String[] args) { | |
// TODO Auto-generated method stub | |
LinkedList list = new LinkedList(); | |
list.insert(18); | |
list.insert(20); | |
list.insert(60); | |