This file contains 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.gtxtreme.firebaseauthentication; | |
import android.support.annotation.NonNull; | |
import android.support.v7.app.AppCompatActivity; | |
import android.os.Bundle; | |
import android.text.TextUtils; | |
import android.view.View; | |
import android.widget.Button; | |
import android.widget.EditText; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
Basic Topics To Be Covered: | |
Preprocessor Directives | |
Functions,Variables,Tokens,Semicolons,Comments,Identifiers | |
Basic Data Types in C: | |
Basic: int,float,long,double,char,void | |
Enumerations |
This file contains 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.gtxtreme.punecoronatracker | |
import android.os.Bundle | |
import android.view.LayoutInflater | |
import android.view.View | |
import android.view.ViewGroup | |
import android.widget.Toast | |
import androidx.fragment.app.Fragment | |
import com.anychart.AnyChart | |
import com.anychart.chart.common.dataentry.DataEntry |
This file contains 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.myappcompany.rob.currencyconverter; | |
import android.support.v7.app.AppCompatActivity; | |
import android.os.Bundle; | |
import android.util.Log; | |
import android.view.View; | |
import android.widget.Button; | |
import android.widget.EditText; | |
import android.widget.Toast; |
This file contains 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
// All files to be placed inside MainActivity.java file | |
package com.example.examplehelloworld; | |
import androidx.appcompat.app.AppCompatActivity; | |
import android.content.Intent; | |
import android.os.Bundle; | |
import android.util.Log; | |
import android.view.View; |
This file contains 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 'dart:typed_data'; | |
import 'models/reciept.dart'; | |
import 'package:flutter/material.dart'; | |
import 'package:pdf/pdf.dart'; | |
import 'models/user.dart'; | |
import 'package:pdf/widgets.dart' as pw; | |
import 'package:printing/printing.dart'; | |
import 'dart:io'; | |
class ReceiptBuilder { |
This file contains 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
// First create a dedicated class for this | |
``` | |
import SwiftUI | |
import GoogleMobileAds | |
class Interstitial : NSObject,GADFullScreenContentDelegate{ | |
var interstitial : GADInterstitialAd = GADInterstitialAd.init() | |
func adDidDismissFullScreenContent(_ ad: GADFullScreenPresentingAd) { |
This file contains 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
object ScreenshotUtils { | |
private lateinit var screenCaptureCallback: Activity.ScreenCaptureCallback | |
fun Activity.observeScreenShotDetection(onScreenShotDetected: () -> Unit) { | |
// TODO Add API Check here | |
(this as LifecycleOwner).lifecycle.addObserver( | |
object : DefaultLifecycleObserver { | |
override fun onStart(owner: LifecycleOwner) { | |
screenCaptureCallback = Activity.ScreenCaptureCallback(onScreenShotDetected) |