summaryrefslogtreecommitdiffstats
path: root/agl-documentation/host-configuration/docs/2_AGL_Application_Framework.md
blob: 31a61041eccd5d8e623a00520f9736fcb38a3850 (plain)
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
# AGL Application Framework

The binder provides a way to connect applications to the services that it
needs.

It provides a fast way to securely offer APIs to applications written in any
language and running almost anywhere.

## Install the AGL application framework

Use the right command line according to your distro

### **Debian**

```bash
sudo apt-get install agl-app-framework-binder-dev
```

### **openSUSE**

```bash
sudo zypper install agl-app-framework-binder-devel
```

### **Fedora**

```bash
sudo dnf install agl-app-framework-binder-devel
```

To have environment variables set correctly to be able to use app-framework-binder just after the installation, you need to either logout/login or you can just manually source this file :

```bash
source /etc/profile.d/agl-app-framework-binder.sh
```

Note that this file will be source automatically for every new session.

## AGL application framework documentation

You can find the AGL application framework documentation
 [here](http://docs.automotivelinux.org/master/docs/apis_services/en/dev/reference/af-main/0-introduction.html
).