Release React Native for Android

This is an early release and there are several things that are known
not to work if you're porting your iOS app to Android.

See the Known Issues guide on the website.

We will work with the community to reach platform parity with iOS.
This commit is contained in:
Martin Konicek
2015-09-14 15:35:58 +01:00
parent c372dab213
commit 42eb5464fd
571 changed files with 44550 additions and 116 deletions

View File

@@ -0,0 +1,26 @@
/**
* Copyright (c) 2015-present, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*/
// AUTOMATICALLY GENERATED CODE. Regenerate with genstructs.sh.
package com.facebook.soloader;
public final class Elf32_Ehdr {
public static final int e_ident = 0x0;
public static final int e_type = 0x10;
public static final int e_machine = 0x12;
public static final int e_version = 0x14;
public static final int e_entry = 0x18;
public static final int e_phoff = 0x1c;
public static final int e_shoff = 0x20;
public static final int e_flags = 0x24;
public static final int e_ehsize = 0x28;
public static final int e_phentsize = 0x2a;
public static final int e_phnum = 0x2c;
public static final int e_shentsize = 0x2e;
public static final int e_shnum = 0x30;
public static final int e_shstrndx = 0x32;
}