IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Delphi Discussion :

erreur connexion portable


Sujet :

Delphi

  1. #1
    Membre confirmé
    Profil pro
    Inscrit en
    Novembre 2009
    Messages
    417
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Novembre 2009
    Messages : 417
    Par défaut erreur connexion portable
    bonjour
    j'essai de remettre a jour une ancienne version de programme
    qui marcher sur delphi 10
    en mode windows 64 sa marche
    mais en android 64 avec mon portable branché et avec
    la fonction débogage autorisé j'ai cette erreur
    Serving ...
    All files should be loaded. Notifying the device.
    Performing Incremental Install
    Failure [INSTALL_PARSE_FAILED_MANIFEST_MALFORMED: Failed parse during installPackageLl: /data/app/vmdl1190346557.tmp/base.apk (at Binary XML file line #33):
    com.embarcadero.firemonkey.FMXNativeActivity: Targeting S+ (version 31 and above) requires that an explicit value for android:exported be defined when intent filters are
    presePerforming Streamed Install
    Adb.exe: failed to install D:\jeux_3d\pourandroid\amigo2\Android64\Debug\amigo2\bin\amigo2.apk: Failure [INSTALL_PARSE_FAILED_MANIFEST_MALFORMED: Failed parse during
    installPackageLl: /data/app/vmdl1041848995.tmp/base.apk (at Binary XML file line #33): com.embarcadero.firemonkey.FMXNativeActivity: Targeting S+ (version 31 and above)
    requires that an explicit value for android:exported be defined when intent filters are present]
    j'ai bien regarder les répertoire du SDK ils sont tous bon
    j'ai même réinstallé Java la dernière version
    me reste que les permissions vous pouvez me dire lesquelles par défaut
    merci

  2. #2
    Membre confirmé
    Profil pro
    Inscrit en
    Novembre 2009
    Messages
    417
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Novembre 2009
    Messages : 417
    Par défaut
    bonjour vous joint mon fichier
    pour voir si sa vient pas de la
    merci


    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
     
    object Form1: TForm1
      Left = 0
      Top = 0
      Caption = 'Form1'
      ClientHeight = 475
      ClientWidth = 231
      Fill.Color = xFFD8F4F5
      Fill.Kind = Solid
      FormFactor.Width = 320
      FormFactor.Height = 480
      FormFactor.Devices = [Desktop]
      OnCreate = FormCreate
      OnClose = FormClose
      DesignerMasterStyle = 3
      object PathAnimation1: TPathAnimation
        Duration = 0.200000002980232200
      end
      object Button1: TButton
        StyledSettings = [Style]
        Position.X = 24.000000000000000000
        Position.Y = 414.000000000000000000
        Size.Width = 57.000000000000000000
        Size.Height = 36.000000000000000000
        Size.PlatformDefault = False
        StyleLookup = 'Button1Style1'
        TabOrder = 1
        Text = 'G'#233'n'#233're'
        TextSettings.Font.Family = 'Arial'
        TextSettings.FontColor = claBlue
        TextSettings.Trimming = None
        TintColor = claTomato
        OnClick = Button1Click
      end
      object Button2: TButton
        StyledSettings = [Style]
        Position.X = 152.000000000000000000
        Position.Y = 414.000000000000000000
        Size.Width = 57.000000000000000000
        Size.Height = 36.000000000000000000
        Size.PlatformDefault = False
        StyleLookup = 'Button1Style1'
        TabOrder = 0
        Text = 'Quitter'
        TextSettings.Font.Family = 'Arial'
        TextSettings.FontColor = claRed
        TextSettings.Trimming = None
        TintColor = claTomato
        OnClick = Button2Click
      end
      object Text1: TText
        Position.X = 8.000000000000000000
        Position.Y = 376.000000000000000000
        Size.Width = 209.000000000000000000
        Size.Height = 34.000000000000000000
        Size.PlatformDefault = False
        Text = '***************'
        TextSettings.FontColor = claBlue
      end
      object Text2: TText
        Position.X = 96.000000000000000000
        Position.Y = 416.000000000000000000
        Size.Width = 50.000000000000000000
        Size.Height = 33.000000000000000000
        Size.PlatformDefault = False
        Text = 'Amigo'
        TextSettings.FontColor = claCrimson
      end
    end
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
     
    unit Unit1;
     
    interface
     
    uses
      System.SysUtils, System.Types, System.UITypes, System.Classes,
      System.Variants,
      FMX.Types, FMX.Controls, FMX.Forms, FMX.Graphics, FMX.Dialogs, FMX.Objects,
      FMX.Controls.Presentation, FMX.StdCtrls, FMX.Ani, FMX.Layouts;
     
    type
      TForm1 = class(TForm)
        Button1: TButton;
        PathAnimation1: TPathAnimation;
        Button2: TButton;
        Text1: TText;
        Text2: TText;
        procedure FormCreate(Sender: TObject);
        procedure Button1Click(Sender: TObject);
        procedure Button2Click(Sender: TObject);
        procedure FormClose(Sender: TObject; var Action: TCloseAction);
        procedure FormDestroy(Sender: TObject);
      private
        { Déclarations privées }
      public
        { Déclarations publiques }
     
        procedure cre_boule(a: integer; var tr: Trectangle; n: integer);
        procedure boule_blanche;
     
        procedure grille;
     
        procedure ballearrivéFinish(Sender: TObject);
     
        procedure trajet;
     
      end;
     
    var
      Form1: TForm1;
      rectang: array [1 .. 28] of Trectangle;
      rec_principal: Trectangle;
      r: integer;
      pas: integer;
      pasy: integer;
      num: integer;
      uneboule: array [1 .. 7] of Tcircle;
      largeur_cadre: integer;
      boule_blanc: Tcircle;
      PathAnimation1: TPathAnimation;
      bal: integer;
      Tableau: array [1 .. 28] of integer; // le tableau
     
      Anim: TFloatAnimation;
     
    implementation
     
    {$R *.fmx}
    {$R *.iPhone4in.fmx IOS}
    {$R *.iPhone.fmx IOS}
    {$R *.Windows.fmx MSWINDOWS}
    {$R *.SmXhdpiPh.fmx ANDROID}
    {$R *.LgXhdpiPh.fmx ANDROID}
     
    procedure TForm1.ballearrivéFinish(Sender: TObject);
    var
      numero: integer;
     
    begin
      PathAnimation1.Stop;
      boule_blanc.Visible := false;
      numero := Tableau[bal];
      cre_boule(bal, rectang[numero], numero);
      sleep(100);
     
      if (PathAnimation1.Running = false) and (bal < 7) then
      begin
     
        bal := bal + 1;
     
        trajet;
     
      end;
     
      if (PathAnimation1.Running = false) and (bal = 7) then
      begin
          Text1.Text := inttostr(Tableau[1]) + ' ' + inttostr(Tableau[2]) + ' '
          + inttostr(Tableau[3]) + ' ' + inttostr(Tableau[4]) + ' ' +
          inttostr(Tableau[5]) + ' ' + inttostr(Tableau[6]) + ' ' +
          inttostr(Tableau[7]);
          Button1.Enabled := true;
          Anim.Loop := false;
          Text2.RotationAngle := 0;
     
      end;
     
    end;
     
    procedure TForm1.trajet;
    var
      xpo, ypo: single;
      nu: integer;
    begin
      nu := Tableau[bal];
      xpo := rectang[nu].Position.X + 2;
      ypo := rectang[nu].Position.y + 2;
      boule_blanc.Visible := true;
      PathAnimation1.Path.ClosePath;
      PathAnimation1.Path.Clear;
      boule_blanc.Position.X := xpo;
      boule_blanc.Position.y := ypo;
     
      { pathanimation1.Path.Data :=
        'M 0,0 l 100,50 l 200,200 l 0,10 l0,400 '+'l '+ floattostr(xpo)+','+ floattostr(ypo); }
      PathAnimation1.Path.MoveTo(PointF(0, 0));
      PathAnimation1.Path.LineTo(PointF(10, 150));
      PathAnimation1.Path.LineTo(PointF(20, 200));
     
      PathAnimation1.Path.LineTo(PointF(90, 150));
      PathAnimation1.Path.LineTo(PointF(xpo, ypo));
     
      PathAnimation1.Path.ClosePath;
      PathAnimation1.OnFinish := Form1.ballearrivéFinish;
      PathAnimation1.Start;
     
    end;
     
    procedure TForm1.boule_blanche;
    begin
      boule_blanc := Tcircle.Create(Form1); { tr ou form1 ???? }
      boule_blanc.Parent := Form1;
      boule_blanc.Fill.Kind := TBrushKind.Gradient;
      boule_blanc.Fill.Gradient.Style := TGradientStyle.Radial;
      boule_blanc.Fill.Gradient.Color := $FFE2E7B3;
      boule_blanc.Stroke.Color := TAlphaColors.Blue;
      boule_blanc.Height := largeur_cadre - 4;
      boule_blanc.Width := largeur_cadre - 4;
      boule_blanc.Position.X := 0;
      boule_blanc.Position.y := 0;
     
      boule_blanc.Visible := false;
     
      PathAnimation1 := TPathAnimation.Create(Self);
      PathAnimation1.Parent := boule_blanc;
      PathAnimation1.Path.Clear;
     
      PathAnimation1.Loop := false;
      PathAnimation1.Duration := 2;
     
    end;
     
    procedure TForm1.grille;
     
    begin
     
      rec_principal := Trectangle.Create(Form1);
      with rec_principal do
      begin
        Parent := Form1;
        Width := (largeur_cadre * 4) + (pas * 2) + 8;
        Height := (largeur_cadre * 7) + 30;
        Position.X := 20;
        Position.y := 0;
        Fill.Color := Talphacolorrec.white;
        Stroke.Color := Talphacolorrec.red;
        Stroke.Thickness := 2;
        xradius := 10;
        yradius := 10;
     
      end;
     
      for r := 1 to 28 do
      begin
     
        rectang[r] := Trectangle.Create(Form1);
        with rectang[r] do
        begin
          Parent := Form1;
          Width := largeur_cadre;
          Height := largeur_cadre;
          Position.X := pas + 20;
          Position.y := pasy;
          Fill.Color := Talphacolorrec.white;
          Stroke.Color := Talphacolorrec.red;
          Stroke.Thickness := 1;
          xradius := 3;
          yradius := 3;
        end;
     
        with TText.Create(Self) do
        begin
          Align := TAlignLayout.Client;
          Text := inttostr(r);
          Font.Size := 10;
          Parent := rectang[r];
          textsettings.FontColor := TAlphaColors.red;
        end;
     
        pas := pas + largeur_cadre + 2;
     
        if r mod 4 = 0 then
        begin
     
          pas := 8;
          pasy := pasy + largeur_cadre + 2;
        end;
      end;
     
    end;
     
    procedure TForm1.Button1Click(Sender: TObject);
    var
     
      I, C, r, t, a: integer;
     
    begin
     
      Anim.Enabled := false;
      Text2.RotationAngle := 0;
      Anim.Enabled := true;
      Anim.Loop := true;
      bal := 1;
      Form1.Button1.Enabled := false;
      Form1.Text1.Text := '***************';
     
      for a := 1 to 7 do
      begin
        if uneboule[a] <> nil then
        begin
          uneboule[a].Free;
          uneboule[a] := nil;
        end;
      end;
     
      {
        j'ai essaye sa pour effacer les cercles
        for a:=1 to 28 do rectang[a].Repaint;
      }
     
      randomize;
      for t := 1 to 50 do
      begin
     
        for I := 1 to 28 do
          Tableau[I] := I;
        for I := 1 to 28 do
        begin
     
          r := random(28) + 1;
          C := Tableau[I];
          { if c>28 then showmessage(inttostr(c)); }
          Tableau[I] := Tableau[r];
          Tableau[r] := C;
        end;
      end;
     
     
      for a := 1 to 7 do
      begin
        num := Tableau[a];
      end;
      trajet;
     
    end;
     
    procedure TForm1.Button2Click(Sender: TObject);
    begin
      application.Terminate;
    end;
     
    procedure TForm1.cre_boule(a: integer; var tr: Trectangle; n: integer);
    begin
      uneboule[a] := Tcircle.Create(tr); { tr ou form1 ???? }
      uneboule[a].Parent := tr;
      uneboule[a].Fill.Kind := TBrushKind.Gradient;
      uneboule[a].Fill.Gradient.Style := TGradientStyle.Radial;
      uneboule[a].Fill.Gradient.Color := $FFE2E7B3;
      uneboule[a].Stroke.Color := TAlphaColors.Blue;
      uneboule[a].Height := largeur_cadre - 1;
      uneboule[a].Align := TAlignLayout.Client;
     
      uneboule[a].Width := largeur_cadre - 1;
      { uneboule[n].Position.X:=400;
        uneboule[n].Position.Y:=100; }
     
      with TText.Create(Self) do
      begin
        Align := TAlignLayout.Client;
        Text := inttostr(n);
        Font.Size := 18;
        Parent := uneboule[a];
        textsettings.FontColor := TAlphaColors.Blue;
      end;
    end;
     
    procedure TForm1.FormClose(Sender: TObject; var Action: TCloseAction);
    begin
      if boule_blanc <> nil then
      begin
        boule_blanc.Free;
        boule_blanc := nil;
      end;
    end;
     
    procedure TForm1.FormCreate(Sender: TObject);
    begin
      largeur_cadre := 60;
      pas := 8;
      pasy := 4;
      grille;
      boule_blanche;
      Text2.RotationAngle := 0;
     
      Anim := TFloatAnimation.Create(Self);
      Anim.Parent := Text2;
      Anim.Duration := 5;
      Anim.StartValue := 0;
      Anim.StopValue := 360;
      Anim.Loop := true;
      Anim.PropertyName := 'Text2.RotationAngle';
      Anim.Enabled := false;
    end;
     
    procedure TForm1.FormDestroy(Sender: TObject);
     
     var
     a:integer;
    begin
    for a:=1 to 7 do
    if uneboule[a]<>nil then uneboule[a].Free;
    end;
     
    end.
    merci

  3. #3
    Expert éminent
    Avatar de ShaiLeTroll
    Homme Profil pro
    Développeur C++\Delphi
    Inscrit en
    Juillet 2006
    Messages
    14 277
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 45
    Localisation : France, Seine Saint Denis (Île de France)

    Informations professionnelles :
    Activité : Développeur C++\Delphi
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Juillet 2006
    Messages : 14 277
    Par défaut
    API Version 31 soit Android 12
    Votre mobile supporte-t-il encore Android 12 ?
    Ou inversement votre Delphi 10 et votre SDK est-il totalement compatible Android 12 et +
    D'ailleurs, ce n'est pas Delphi 10 (Seattle 2015 ) mais probablement Delphi 10.4 (Sydney 2020 )
    C'est important de penser à ça et de connaître sa version.
    C'est plus de 5 versions et 5 ans qui les séparent, pour Android c'est un gouffre.

    Et le message d'erreur indique qu'il faut modifier le fichier "manifest" de votre projet, en particulier android:exported


    Je ne fais jamais de FMX, mais pour Windows, utilisant une compilation par le DPR et non via le DPROJ, le fichier manifest est inclu manuellement par .rc
    Voir si l'on peut faire de même en Android pour définir un fichier manifest personnalisé soit depuis le DPROJ soit avec une include, voir Android Application Manifest File (AndroidManifest.xml) et Customizing Your AndroidManifest.xml File


    Je pense que cet article pourrait vous aider Getting android:exported needs to be explicitly specified for element even after adding the android:exported value
    Regarder si certaines dépendances ne sont pas trop anciennes, Delphi 10, ça date un peu dans un contexte Android, cet OS change radicalement à chaque version, soyez plus précis dans le numéro de version, le DFM et le PAS sont inutiles dans ce cas.
    Aide via F1 - Utilisez l'I.A. - FAQ - Guide du développeur Delphi devant un problème - Pensez-y !
    Attention Troll Méchant !
    "Quand un homme a faim, mieux vaut lui apprendre à pêcher que de lui donner un poisson" Confucius
    Mieux vaut se taire et paraître idiot, Que l'ouvrir et de le confirmer !
    L'ignorance n'excuse pas la médiocrité ! Sachez-le : l'IA remplace la très grande majorité des développeurs, pas seulement les ignares ...

    L'expérience, c'est le nom que chacun donne à ses erreurs. (Oscar Wilde)
    Il faut avoir le courage de se tromper et d'apprendre de ses erreurs

  4. #4
    Membre confirmé
    Profil pro
    Inscrit en
    Novembre 2009
    Messages
    417
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Novembre 2009
    Messages : 417
    Par défaut
    bonsoir
    merci pour aide
    oui c'est un ancien programme que j'avais fait avec delphi 10 Community
    et que je modifie sur Delphi 12 Community
    pour le fichier manifeste j'avais rien changé
    faut t'il le supprimer ?
    mon portable est mis a jour sur Android 13
    je vais aller consulter tes liens
    merci

  5. #5
    Rédacteur/Modérateur

    Avatar de SergioMaster
    Homme Profil pro
    Développeur informatique retraité
    Inscrit en
    Janvier 2007
    Messages
    15 931
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 70
    Localisation : France, Loire Atlantique (Pays de la Loire)

    Informations professionnelles :
    Activité : Développeur informatique retraité
    Secteur : Industrie

    Informations forums :
    Inscription : Janvier 2007
    Messages : 15 931
    Billets dans le blog
    66
    Par défaut
    Bonjour,

    sans supprimer la manifeste, il faut d'abord tenter une manip simple : la réinitialisation des bibliothèque
    Nom : Capture.png
Affichages : 59
Taille : 40,5 Ko
    clic droit sur Bibliothéques pour avoir l'option.

    Ce n'est qu'ensuite, si cela ne fonctionne pas, que la suppression du manifeste deviendra nécessaire.

    Je suis d'accord avec ShaiLeTroll cette manie de google de toujours modifier ses normes est une vrai plaie, comme ils font généralement ça sans consulter personne ni communiquer vraiment (généralement en Juillet ou Aout) , on se retrouve avec des trucs obsolètes très vite et il faut à Embarcadero du temps pour réaligner Delphi (ce qui explique les versions annuelles voire semi-annuelles)
    MVP Embarcadero
    Delphi installés : D3,D7,D2010,XE4,XE7,D10 (Rio, Sidney), D11 (Alexandria), D12 (Athènes), D13 (Florence)
    SGBD : Firebird 2.5, 3, 5 et SQLite
    générateurs États : FastReport, Rave, QuickReport
    OS : Window Vista, Windows 10, Windows 11, Ubuntu, Androïd

  6. #6
    Membre confirmé
    Profil pro
    Inscrit en
    Novembre 2009
    Messages
    417
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Novembre 2009
    Messages : 417
    Par défaut
    bonjour
    j'ai un léger mieux
    il m'as sorti un fichier "migo2026.aab"
    avant ce n'était pas APK
    je l'ai transféré sur mon téléphone et la rien ne se passe
    donc quelle application je dois télécharger pour installer
    merci

  7. #7
    Membre confirmé
    Profil pro
    Inscrit en
    Novembre 2009
    Messages
    417
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Novembre 2009
    Messages : 417
    Par défaut
    bonjour
    le manifest as été remplacé par sa lien fourni plus dans la discussion

    <?xml version="1.0" encoding="utf-8"?>
    <!-- BEGIN_INCLUDE(manifest) -->
    <manifest xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    package="com.embarcadero.migo2026"
    android:versionCode="1"
    android:versionName="1.0.0"
    android:installLocation="auto">
    <uses-sdk android:minSdkVersion="23" android:targetSdkVersion="34" />
    <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
    <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
    <uses-permission android:name="android.permission.CALL_PHONE" />
    <uses-permission android:name="android.permission.CAMERA" />
    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" android:maxSdkVersion="32" />
    <uses-permission android:name="android.permission.READ_PHONE_STATE" />
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" android:maxSdkVersion="32" />

    <uses-feature android:glEsVersion="0x00020000" android:required="true"/>
    <queries>

    </queries>
    <application
    android:persistent="False"
    android:restoreAnyVersion="False"
    android:label="migo2026"
    android:debuggable="false"
    android:largeHeap="False"
    android:icon="@drawable/ic_launcher"
    android:theme="@style/AppTheme"
    android:hardwareAccelerated="true"
    android:resizeableActivity="true"
    android:requestLegacyExternalStorage="true">



    <!-- Trigger Google Play services to install the backported photo picker module. -->
    <service
    android:name="com.google.android.gms.metadata.ModuleDependencies"
    android:enabled="false"
    android:exported="false"
    tools:ignore="MissingClass">
    <intent-filter>
    <action android:name="com.google.android.gms.metadata.MODULE_DEPENDENCIES" />
    </intent-filter>

    <meta-data android:name="photopicker_activity:0:required" android:value="" />
    </service>

    <!-- Our activity is a subclass of the built-in NativeActivity framework class.
    This will take care of integrating with our NDK code. -->
    <activity
    android:name="com.embarcadero.firemonkey.FMXNativeActivity"
    android:exported="true"
    android:label="migo2026"
    android:configChanges="orientation|keyboard|keyboardHidden|screenSize|screenLayout|uiMode"
    android:launchMode="singleTask">
    <!-- Tell NativeActivity the name of our .so -->
    <meta-data android:name="android.app.lib_name" android:value="migo2026" />

    <intent-filter>
    <action android:name="android.intent.action.MAIN" />

    <category android:name="android.intent.category.LAUNCHER" />
    </intent-filter>
    </activity>

    <receiver android:name="com.embarcadero.rtl.notifications.NotificationAlarm" />

    </application>
    </manifest>
    <!-- END_INCLUDE(manifest) -->


  8. #8
    Membre confirmé
    Profil pro
    Inscrit en
    Novembre 2009
    Messages
    417
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Novembre 2009
    Messages : 417
    Par défaut
    bonjour
    sa marche
    je ne sais pas si c'était sa

    Nom : develop.png
Affichages : 50
Taille : 4,1 Ko


    mais j'ai mis sur développement
    construire
    exécuter et plus erreur sauf
    sur le téléphone google me conseiller de le désinstaller
    merci je peux maintenant modifier mon programme

  9. #9
    Membre confirmé
    Profil pro
    Inscrit en
    Novembre 2009
    Messages
    417
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Novembre 2009
    Messages : 417
    Par défaut
    bonjour
    PS: j'ai oublié de vous dire aussi
    au permission j'ai rien validé
    ++

+ Répondre à la discussion
Cette discussion est résolue.

Discussions similaires

  1. Réponses: 10
    Dernier message: 04/04/2006, 20h36
  2. [BO5.1.3][oracle9] Erreur connexion DA0005:1010
    Par ggnore dans le forum Oracle
    Réponses: 12
    Dernier message: 04/10/2005, 14h00
  3. Erreur connexion MySQL-PHP
    Par specialfox dans le forum Installation
    Réponses: 3
    Dernier message: 27/09/2005, 19h47
  4. [CE10 Pro] Erreur Connexion SQL pour etats publiés
    Par L.nico dans le forum Connectivité
    Réponses: 1
    Dernier message: 09/12/2004, 17h16
  5. Erreur connexion mysql
    Par bodbod dans le forum Bases de données
    Réponses: 3
    Dernier message: 10/07/2004, 09h28

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo