Posts

Showing posts from November 23, 2018

Université Strasbourg-I

Image
Cet article est une ébauche concernant une université. Vous pouvez partager vos connaissances en l’améliorant ( comment ? ) selon les recommandations des projets correspondants. Université Strasbourg I.mw-parser-output .entete.universite{background-image:url("//upload.wikimedia.org/wikipedia/commons/4/42/Picto_infobox_book.png")} Histoire et statut Fondation 1970 Dissolution 1 er janvier 2009 [ 1 ] Type Université historique Régime linguistique Français Localisation Localisation Strasbourg Pays   France Localisation sur la carte de Strasbourg Divers Site web www-ulp.u-strasbg.fr/en/bienvenue modifier - modifier le code - modifier Wikidata L’ université Louis-Pasteur (nom officiel : Strasbourg-I ) a existé entre 1970 et 2008. C’était l’université scientifique de la ville. Elle a fusionné avec les deux autres universités strasbourgeoises, l'université Marc-Bloch et l'université Robert-Sch

How do I setup an Android Notification Channel?

Image
up vote 0 down vote favorite I looked at the example code Android "Create a Notification" example and created my own version of it: import android.support.v4.app.NotificationCompat; ... Notification notification = new NotificationCompat.Builder(this, (String) CHANNEL_ID) .setContentTitle("Eumag") .setContentText("foreground service running") .setSmallIcon(R.drawable.ic_android) .setContentIntent(pendingIntent) .build(); However, that yielded this error when I tried to build the project: error: constructor Builder in class Builder cannot be applied to given types; required: Context found: ForegroundService,String reason: actual and formal argument lists differ in length I did some research and found out that it me