mirror of
				https://github.com/android/ndk-samples
				synced 2025-11-04 14:27:06 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			290 B
		
	
	
	
		
			Groovy
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			290 B
		
	
	
	
		
			Groovy
		
	
	
	
	
	
plugins {
 | 
						|
    id "ndksamples.android.application"
 | 
						|
}
 | 
						|
 | 
						|
android {
 | 
						|
    namespace 'com.example.native_plasma'
 | 
						|
 | 
						|
    defaultConfig {
 | 
						|
        applicationId 'com.example.native_plasma'
 | 
						|
    }
 | 
						|
 | 
						|
    externalNativeBuild {
 | 
						|
        cmake {
 | 
						|
            path 'src/main/cpp/CMakeLists.txt'
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |