This file is indexed.

/usr/share/ecere/samples/android/helloAndroid.ec is in ecere-samples 0.44.15-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
import "ecere"

class AndroidApp : GuiApplication
{
   ColorHSV color;
   color = red;
   bool Cycle(bool idle)
   {
      color.h += Degrees { 1 };
      if(color.h >= Degrees { 360 }) color.h = 0;
      mw.background = color;
      mw.Update(null);
      return true;
   }
}

class MyWindow : Window
{
   BitmapResource bmp { "<:Hello>ecere sdk.png", window = this, alphaBlend = true };
   hasClose = true;
   anchor = { 0,0,0,0 };

   void OnRedraw(Surface surface)
   {
      surface.background = green;
      surface.Area(100, 100, 300, 300);
      if(bmp.bitmap)
      {
         surface.Stretch(bmp.bitmap, 0,0, 0,0, 350, 350, bmp.bitmap.width, bmp.bitmap.height);
      }
   }
}

MyWindow mw { };
MessageBox hello { mw, contents = "Hello, Android!!" };